summaryrefslogtreecommitdiffstats
path: root/tqtinterface/conversion_scripts/convert_qt_itself6
blob: 88624dfbbb470057bc8d127c63d1ed7edfaf76f6 (plain)
1
2
3
4
5
6
7
8
9
10
#!/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' {} \;