From b3f2654e86debf204279df820d4669f5aed9d3fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 29 Jul 2013 22:14:17 +0200 Subject: [PATCH] Fix unintended renaming of QCStringList in convert_existing_qt3_app_to_tqt3 script --- qt3-tqt3/convert_existing_qt3_app_to_tqt3 | 1 + 1 file changed, 1 insertion(+) 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' \