diff options
author | Slávek Banko <[email protected]> | 2013-07-29 22:14:17 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-07-29 22:17:41 +0200 |
commit | b3f2654e86debf204279df820d4669f5aed9d3fa (patch) | |
tree | 99ca84bd72bc990dc368fa02b2369655858a01b5 /qt3-tqt3 | |
parent | 03054b4a30d7e29c89010fb332e599acb93eaab4 (diff) | |
download | experimental-b3f2654e86debf204279df820d4669f5aed9d3fa.tar.gz experimental-b3f2654e86debf204279df820d4669f5aed9d3fa.zip |
Fix unintended renaming of QCStringList in convert_existing_qt3_app_to_tqt3 script
Diffstat (limited to 'qt3-tqt3')
-rwxr-xr-x | qt3-tqt3/convert_existing_qt3_app_to_tqt3 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt3-tqt3/convert_existing_qt3_app_to_tqt3 b/qt3-tqt3/convert_existing_qt3_app_to_tqt3 index f5a2984..bcf6f9f 100755 --- a/qt3-tqt3/convert_existing_qt3_app_to_tqt3 +++ b/qt3-tqt3/convert_existing_qt3_app_to_tqt3 @@ -22,6 +22,7 @@ find ./ -type f -iname "*" -not -iwholename '*.git*' -print0 |\ xargs -r0 sed -i \ -e 's/TQ_OBJECT/Q_OBJECT/g' \ -e 's/TQT_/QT_/g' \ + -e 's/TQCStringList/QCStringList/g' \ -e 's/TQMAKE/QMAKE/g' \ -e 's/TQTDIR/QTDIR/g' \ -e 's/OBLITQUE/OBLIQUE/g' \ |