You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
524 B
11 lines
524 B
#!/bin/bash
|
|
|
|
find ./ -type f -iname "*" -exec sed -i 's/TQT_STATIC_CONST/QT_STATIC_CONST/g' {} \;
|
|
find ./ -type f -iname "*" -exec sed -i 's/TQ_SIGNALS/signals/g' {} \;
|
|
find ./ -type f -iname "*" -exec sed -i 's/TQ_SLOTS/slots/g' {} \;
|
|
find ./ -type f -iname "*" -exec sed -i 's/TQ_ASSERT/Q_ASSERT/g' {} \;
|
|
find ./ -type f -iname "*" -exec sed -i 's/TQ_UNUSED/Q_UNUSED/g' {} \;
|
|
#find ./ -type f -iname "*" -exec sed -i 's/TQ_PROPERTY/Q_PROPERTY/g' {} \;
|
|
|
|
find ./ -type f -iname "*" -exec sed -i 's/SIGTQUIT/SIGQUIT/g' {} \;
|