diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:36:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:36:27 -0600 |
commit | 44bcd47cf37723ecfa8bb432403d2bea59988773 (patch) | |
tree | 2d655821a05784e89fdc96c99bef7c30c0a1fc49 /qtinterface/convert_qt_tqt2 | |
parent | 6b90a76cf23e1adb89fd4e0c9501b777f456e2a5 (diff) | |
download | tqtinterface-44bcd47cf37723ecfa8bb432403d2bea59988773.tar.gz tqtinterface-44bcd47cf37723ecfa8bb432403d2bea59988773.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'qtinterface/convert_qt_tqt2')
-rwxr-xr-x | qtinterface/convert_qt_tqt2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qtinterface/convert_qt_tqt2 b/qtinterface/convert_qt_tqt2 index eee091e..3c49ac9 100755 --- a/qtinterface/convert_qt_tqt2 +++ b/qtinterface/convert_qt_tqt2 @@ -996,12 +996,12 @@ find ./ -type f -iname "*.c*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \; find ./ -type f -iname "*.c*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \; # Convert a few items that have changed too subtly to override in the TQT interface layer -find ./ -type f -iname "*.c*" -exec sed -i 's/->children()/->tqchildren()/g' {} \; +find ./ -type f -iname "*.c*" -exec sed -i 's/->children()/->children()/g' {} \; find ./ -type f -iname "*.c*" -exec sed -i 's/access != QMetaData::/tqaccess != QMetaData::/g' {} \; find ./ -type f -iname "*.c*" -exec sed -i 's/colorTable()/ptrColorTable()/g' {} \; find ./ -type f -iname "*.c*" -exec sed -i 's/QStyleOption::Default/QStyleOption::TQSO_Default/g' {} \; find ./ -type f -iname "*.c*" -exec sed -i 's/::qt_cast/tqqt_cast/g' {} \; -find ./ -type f -iname "*.c*" -exec sed -i 's/mask()/tqmask()/g' {} \; +find ./ -type f -iname "*.c*" -exec sed -i 's/mask()/mask()/g' {} \; # Back out some common mistakes find ./ -type f -iname "*.c*" -exec sed -i 's/\([_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]\)TQ/\1Q/g' {} \; |