summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-02-10 19:53:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-02-11 20:56:14 +0900
commit70b3c7d4ffbdbe4d38582d5547d3bf81077d23ac (patch)
tree2ac36e438f8f641b7b96d7bbc9e806729226564b
parent2b8afac3e7a0cca1fb9e371562a8449ffbf575d2 (diff)
downloadtqtinterface-70b3c7d4ffbdbe4d38582d5547d3bf81077d23ac.tar.gz
tqtinterface-70b3c7d4ffbdbe4d38582d5547d3bf81077d23ac.zip
Removed unused scripts
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--qtinterface/TODO59
-rwxr-xr-xqtinterface/convert_qt_tqt1550
-rwxr-xr-xqtinterface/convert_qt_tqt21026
-rwxr-xr-xqtinterface/convert_qt_tqt3987
-rwxr-xr-xqtinterface/dcopidl-tqt10
-rwxr-xr-xqtinterface/dcopidl2cpp-tqt27
-rwxr-xr-xqtinterface/dcopidlng-tqt10
-rw-r--r--qtinterface/iqtimer.cpp23
-rwxr-xr-xqtinterface/mcopidl-tqt10
-rwxr-xr-xqtinterface/parser.sh19
-rwxr-xr-xqtinterface/parser2.sh27
-rwxr-xr-xqtinterface/parser3.sh24
12 files changed, 0 insertions, 2772 deletions
diff --git a/qtinterface/TODO b/qtinterface/TODO
deleted file mode 100644
index 6733163..0000000
--- a/qtinterface/TODO
+++ /dev/null
@@ -1,59 +0,0 @@
-qaccessible
-
-
-
-
-All headers that contain the keywork TQ_OBJECT have been ported,
-exept for these due to *@#$ private functions
-
-qclipboard
-qcolordialog
-qdragobject (QDragManager)
-qfontdialog
-qguardedptr (TQGuardedPtr, weird compilation failure)
-qinputdialog
-qnetworkprotocol (QNetworkProtocolFactory, weird compilation failure)
-qsessionmanager
-qtranslator (TQT_NO_TRANSLATION is set, MOC does not honor #ifdef)
-qwidgetplugin (TQWidgetContainerPlugin, weird compilation failure)
-
-
-
-And these that do not contain TQ_OBJECT are failing:
-
-qasciicache
-qasciidict
-qcache
-qcleanuphandler
-qdeepcopy
-qdict
-qintcache
-qintdict
-qmap
-qmemarray
-qptrdict
-qptrlist
-qptrqueue
-qsqlpropertymap
-qsqlselectcursor
-qthreadstorage
-qtl
-qvaluelist
-qvaluestack
-
-This may have something to do with the template class junk
-
-Weird headers with no classes (???):
-
-tqdrawutil
-
-
-
-
-Here's the latest proposed structure of the library...
-
-All of Trinity now uses TQ<something>, e.g. QTimer is now TQTimer. Depending on the QT3 or QT4 flag, certain defines are set in tqt.h like the following:
-#define TQCString QCString (for Qt3)
-#define TQCString Q3CString (for Qt4)
-
-If needed, the TQ function can subclass the Q or Q3 function and reimplement the missing features. However, the vast majority of classes (those that have not changed much) will be handled with the simple #define statements, greatly simplifying and speeding implementation.
diff --git a/qtinterface/convert_qt_tqt1 b/qtinterface/convert_qt_tqt1
deleted file mode 100755
index ef88688..0000000
--- a/qtinterface/convert_qt_tqt1
+++ /dev/null
@@ -1,550 +0,0 @@
-#!/bin/bash
-
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qabstractlayout\.h/\1tqabstractlayout\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qabstractlayout\.h/\1tqabstractlayout\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qaccel\.h/\1tqaccel\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qaccel\.h/\1tqaccel\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qaccessible\.h/\1tqaccessible\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qaccessible\.h/\1tqaccessible\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qaction\.h/\1tqaction\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qaction\.h/\1tqaction\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qapplication\.h/\1tqapplication\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qapplication\.h/\1tqapplication\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qasciicache\.h/\1tqasciicache\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qasciicache\.h/\1tqasciicache\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qasciidict\.h/\1tqasciidict\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qasciidict\.h/\1tqasciidict\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qasyncimageio\.h/\1tqasyncimageio\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qasyncimageio\.h/\1tqasyncimageio\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qasyncio\.h/\1tqasyncio\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qasyncio\.h/\1tqasyncio\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qbig5codec\.h/\1tqbig5codec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qbig5codec\.h/\1tqbig5codec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qbitarray\.h/\1tqbitarray\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qbitarray\.h/\1tqbitarray\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qbitmap\.h/\1tqbitmap\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qbitmap\.h/\1tqbitmap\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qbrush\.h/\1tqbrush\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qbrush\.h/\1tqbrush\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qbuffer\.h/\1tqbuffer\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qbuffer\.h/\1tqbuffer\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qbuttongroup\.h/\1tqbuttongroup\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qbuttongroup\.h/\1tqbuttongroup\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qbutton\.h/\1tqbutton\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qbutton\.h/\1tqbutton\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcache\.h/\1tqcache\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcache\.h/\1tqcache\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcanvas\.h/\1tqcanvas\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcanvas\.h/\1tqcanvas\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcdestyle\.h/\1tqcdestyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcdestyle\.h/\1tqcdestyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcheckbox\.h/\1tqcheckbox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcheckbox\.h/\1tqcheckbox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcleanuphandler\.h/\1tqcleanuphandler\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcleanuphandler\.h/\1tqcleanuphandler\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qclipboard\.h/\1tqclipboard\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qclipboard\.h/\1tqclipboard\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcolordialog\.h/\1tqcolordialog\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcolordialog\.h/\1tqcolordialog\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcolor\.h/\1tqcolor\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcolor\.h/\1tqcolor\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcombobox\.h/\1tqcombobox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcombobox\.h/\1tqcombobox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcommonstyle\.h/\1tqcommonstyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcommonstyle\.h/\1tqcommonstyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcompactstyle\.h/\1tqcompactstyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcompactstyle\.h/\1tqcompactstyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qconfig\.h/\1tqconfig\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qconfig\.h/\1tqconfig\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qconnection\.h/\1tqconnection\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qconnection\.h/\1tqconnection\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcstring\.h/\1tqcstring\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcstring\.h/\1tqcstring\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qcursor\.h/\1tqcursor\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qcursor\.h/\1tqcursor\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdatabrowser\.h/\1tqdatabrowser\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdatabrowser\.h/\1tqdatabrowser\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdatastream\.h/\1tqdatastream\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdatastream\.h/\1tqdatastream\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdatatable\.h/\1tqdatatable\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdatatable\.h/\1tqdatatable\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdataview\.h/\1tqdataview\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdataview\.h/\1tqdataview\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdatetimeedit\.h/\1tqdatetimeedit\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdatetimeedit\.h/\1tqdatetimeedit\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdatetime\.h/\1tqdatetime\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdatetime\.h/\1tqdatetime\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdeepcopy\.h/\1tqdeepcopy\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdeepcopy\.h/\1tqdeepcopy\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdesktopwidget\.h/\1tqdesktopwidget\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdesktopwidget\.h/\1tqdesktopwidget\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdial\.h/\1tqdial\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdial\.h/\1tqdial\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdialog\.h/\1tqdialog\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdialog\.h/\1tqdialog\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdict\.h/\1tqdict\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdict\.h/\1tqdict\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdir\.h/\1tqdir\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdir\.h/\1tqdir\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdns\.h/\1tqdns\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdns\.h/\1tqdns\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdockarea\.h/\1tqdockarea\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdockarea\.h/\1tqdockarea\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdockwindow\.h/\1tqdockwindow\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdockwindow\.h/\1tqdockwindow\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdom\.h/\1tqdom\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdom\.h/\1tqdom\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdragobject\.h/\1tqdragobject\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdragobject\.h/\1tqdragobject\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdrawutil\.h/\1tqdrawutil\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdrawutil\.h/\1tqdrawutil\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qdropsite\.h/\1tqdropsite\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qdropsite\.h/\1tqdropsite\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qeditorfactory\.h/\1tqeditorfactory\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qeditorfactory\.h/\1tqeditorfactory\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qerrormessage\.h/\1tqerrormessage\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qerrormessage\.h/\1tqerrormessage\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qeucjpcodec\.h/\1tqeucjpcodec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qeucjpcodec\.h/\1tqeucjpcodec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qeuckrcodec\.h/\1tqeuckrcodec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qeuckrcodec\.h/\1tqeuckrcodec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qevent\.h/\1tqevent\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qevent\.h/\1tqevent\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qeventloop\.h/\1tqeventloop\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qeventloop\.h/\1tqeventloop\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfeatures\.h/\1tqfeatures\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfeatures\.h/\1tqfeatures\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfiledialog\.h/\1tqfiledialog\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfiledialog\.h/\1tqfiledialog\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfile\.h/\1tqfile\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfile\.h/\1tqfile\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfileinfo\.h/\1tqfileinfo\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfileinfo\.h/\1tqfileinfo\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfocusdata\.h/\1tqfocusdata\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfocusdata\.h/\1tqfocusdata\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfontdatabase\.h/\1tqfontdatabase\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfontdatabase\.h/\1tqfontdatabase\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfontdialog\.h/\1tqfontdialog\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfontdialog\.h/\1tqfontdialog\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfont\.h/\1tqfont\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfont\.h/\1tqfont\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfontinfo\.h/\1tqfontinfo\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfontinfo\.h/\1tqfontinfo\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qfontmetrics\.h/\1tqfontmetrics\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qfontmetrics\.h/\1tqfontmetrics\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qframe\.h/\1tqframe\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qframe\.h/\1tqframe\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qftp\.h/\1tqftp\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qftp\.h/\1tqftp\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgarray\.h/\1tqgarray\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgarray\.h/\1tqgarray\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgb18030codec\.h/\1tqgb18030codec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgb18030codec\.h/\1tqgb18030codec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgbkcodec\.h/\1tqgbkcodec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgbkcodec\.h/\1tqgbkcodec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgcache\.h/\1tqgcache\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgcache\.h/\1tqgcache\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgdict\.h/\1tqgdict\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgdict\.h/\1tqgdict\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgeneric\.h/\1tqgeneric\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgeneric\.h/\1tqgeneric\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgif\.h/\1tqgif\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgif\.h/\1tqgif\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qglcolormap\.h/\1tqglcolormap\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qglcolormap\.h/\1tqglcolormap\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgl\.h/\1tqgl\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgl\.h/\1tqgl\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qglist\.h/\1tqglist\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qglist\.h/\1tqglist\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qglobal\.h/\1tqglobal\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qglobal\.h/\1tqglobal\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgplugin\.h/\1tqgplugin\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgplugin\.h/\1tqgplugin\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgrid\.h/\1tqgrid\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgrid\.h/\1tqgrid\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgridview\.h/\1tqgridview\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgridview\.h/\1tqgridview\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgroupbox\.h/\1tqgroupbox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgroupbox\.h/\1tqgroupbox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qguardedptr\.h/\1tqguardedptr\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qguardedptr\.h/\1tqguardedptr\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qgvector\.h/\1tqgvector\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qgvector\.h/\1tqgvector\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qhbox\.h/\1tqhbox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qhbox\.h/\1tqhbox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qhbuttongroup\.h/\1tqhbuttongroup\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qhbuttongroup\.h/\1tqhbuttongroup\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qheader\.h/\1tqheader\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qheader\.h/\1tqheader\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qhgroupbox\.h/\1tqhgroupbox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qhgroupbox\.h/\1tqhgroupbox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qhostaddress\.h/\1tqhostaddress\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qhostaddress\.h/\1tqhostaddress\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qhttp\.h/\1tqhttp\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qhttp\.h/\1tqhttp\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qiconset\.h/\1tqiconset\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qiconset\.h/\1tqiconset\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qiconview\.h/\1tqiconview\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qiconview\.h/\1tqiconview\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qimageformatplugin\.h/\1tqimageformatplugin\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qimageformatplugin\.h/\1tqimageformatplugin\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qimage\.h/\1tqimage\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qimage\.h/\1tqimage\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qinputcontextfactory\.h/\1tqinputcontextfactory\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qinputcontextfactory\.h/\1tqinputcontextfactory\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qinputcontext\.h/\1tqinputcontext\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qinputcontext\.h/\1tqinputcontext\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qinputdialog\.h/\1tqinputdialog\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qinputdialog\.h/\1tqinputdialog\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qintcache\.h/\1tqintcache\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qintcache\.h/\1tqintcache\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qintdict\.h/\1tqintdict\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qintdict\.h/\1tqintdict\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qinterlacestyle\.h/\1tqinterlacestyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qinterlacestyle\.h/\1tqinterlacestyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qiodevice\.h/\1tqiodevice\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qiodevice\.h/\1tqiodevice\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qjiscodec\.h/\1tqjiscodec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qjiscodec\.h/\1tqjiscodec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qjpegio\.h/\1tqjpegio\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qjpegio\.h/\1tqjpegio\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qjpunicode\.h/\1tqjpunicode\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qjpunicode\.h/\1tqjpunicode\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qkeycode\.h/\1tqkeycode\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qkeycode\.h/\1tqkeycode\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qkeysequence\.h/\1tqkeysequence\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qkeysequence\.h/\1tqkeysequence\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qlabel\.h/\1tqlabel\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qlabel\.h/\1tqlabel\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qlayout\.h/\1tqlayout\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qlayout\.h/\1tqlayout\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qlcdnumber\.h/\1tqlcdnumber\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qlcdnumber\.h/\1tqlcdnumber\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qlibrary\.h/\1tqlibrary\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qlibrary\.h/\1tqlibrary\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qlineedit\.h/\1tqlineedit\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qlineedit\.h/\1tqlineedit\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qlistbox\.h/\1tqlistbox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qlistbox\.h/\1tqlistbox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qlistview\.h/\1tqlistview\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qlistview\.h/\1tqlistview\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qlocale\.h/\1tqlocale\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qlocale\.h/\1tqlocale\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qlocalfs\.h/\1tqlocalfs\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qlocalfs\.h/\1tqlocalfs\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmainwindow\.h/\1tqmainwindow\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmainwindow\.h/\1tqmainwindow\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmap\.h/\1tqmap\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmap\.h/\1tqmap\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmemarray\.h/\1tqmemarray\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmemarray\.h/\1tqmemarray\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmenubar\.h/\1tqmenubar\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmenubar\.h/\1tqmenubar\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmenudata\.h/\1tqmenudata\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmenudata\.h/\1tqmenudata\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmessagebox\.h/\1tqmessagebox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmessagebox\.h/\1tqmessagebox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmetaobject\.h/\1tqmetaobject\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmetaobject\.h/\1tqmetaobject\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmime\.h/\1tqmime\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmime\.h/\1tqmime\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmngio\.h/\1tqmngio\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmngio\.h/\1tqmngio\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmodules\.h/\1tqmodules\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmodules\.h/\1tqmodules\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmotifplusstyle\.h/\1tqmotifplusstyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmotifplusstyle\.h/\1tqmotifplusstyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmotifstyle\.h/\1tqmotifstyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmotifstyle\.h/\1tqmotifstyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmovie\.h/\1tqmovie\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmovie\.h/\1tqmovie\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmultilineedit\.h/\1tqmultilineedit\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmultilineedit\.h/\1tqmultilineedit\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qmutex\.h/\1tqmutex\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qmutex\.h/\1tqmutex\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qnamespace\.h/\1tqnamespace\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qnamespace\.h/\1tqnamespace\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qnetwork\.h/\1tqnetwork\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qnetwork\.h/\1tqnetwork\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qnetworkprotocol\.h/\1tqnetworkprotocol\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qnetworkprotocol\.h/\1tqnetworkprotocol\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qnp\.h/\1tqnp\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qnp\.h/\1tqnp\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qobjectcleanuphandler\.h/\1tqobjectcleanuphandler\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qobjectcleanuphandler\.h/\1tqobjectcleanuphandler\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qobjectdict\.h/\1tqobjectdict\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qobjectdict\.h/\1tqobjectdict\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qobject\.h/\1tqobject\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qobject\.h/\1tqobject\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qobjectlist\.h/\1tqobjectlist\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qobjectlist\.h/\1tqobjectlist\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpaintdevice\.h/\1tqpaintdevice\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpaintdevice\.h/\1tqpaintdevice\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpaintdevicemetrics\.h/\1tqpaintdevicemetrics\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpaintdevicemetrics\.h/\1tqpaintdevicemetrics\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpaintd\.h/\1tqpaintd\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpaintd\.h/\1tqpaintd\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpainter\.h/\1tqpainter\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpainter\.h/\1tqpainter\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpair\.h/\1tqpair\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpair\.h/\1tqpair\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpalette\.h/\1tqpalette\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpalette\.h/\1tqpalette\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpen\.h/\1tqpen\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpen\.h/\1tqpen\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpicture\.h/\1tqpicture\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpicture\.h/\1tqpicture\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpixmapcache\.h/\1tqpixmapcache\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpixmapcache\.h/\1tqpixmapcache\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpixmap\.h/\1tqpixmap\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpixmap\.h/\1tqpixmap\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qplatinumstyle\.h/\1tqplatinumstyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qplatinumstyle\.h/\1tqplatinumstyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpngio\.h/\1tqpngio\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpngio\.h/\1tqpngio\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpointarray\.h/\1tqpointarray\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpointarray\.h/\1tqpointarray\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpoint\.h/\1tqpoint\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpoint\.h/\1tqpoint\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpolygonscanner\.h/\1tqpolygonscanner\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpolygonscanner\.h/\1tqpolygonscanner\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpopupmenu\.h/\1tqpopupmenu\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpopupmenu\.h/\1tqpopupmenu\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qprintdialog\.h/\1tqprintdialog\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qprintdialog\.h/\1tqprintdialog\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qprinter\.h/\1tqprinter\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qprinter\.h/\1tqprinter\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qprocess\.h/\1tqprocess\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qprocess\.h/\1tqprocess\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qprogressbar\.h/\1tqprogressbar\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qprogressbar\.h/\1tqprogressbar\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qprogressdialog\.h/\1tqprogressdialog\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qprogressdialog\.h/\1tqprogressdialog\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qptrcollection\.h/\1tqptrcollection\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qptrcollection\.h/\1tqptrcollection\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qptrdict\.h/\1tqptrdict\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qptrdict\.h/\1tqptrdict\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qptrlist\.h/\1tqptrlist\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qptrlist\.h/\1tqptrlist\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qptrqueue\.h/\1tqptrqueue\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qptrqueue\.h/\1tqptrqueue\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qptrstack\.h/\1tqptrstack\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qptrstack\.h/\1tqptrstack\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qptrvector\.h/\1tqptrvector\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qptrvector\.h/\1tqptrvector\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qpushbutton\.h/\1tqpushbutton\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qpushbutton\.h/\1tqpushbutton\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qradiobutton\.h/\1tqradiobutton\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qradiobutton\.h/\1tqradiobutton\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qrangecontrol\.h/\1tqrangecontrol\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qrangecontrol\.h/\1tqrangecontrol\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qrect\.h/\1tqrect\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qrect\.h/\1tqrect\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qregexp\.h/\1tqregexp\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qregexp\.h/\1tqregexp\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qregion\.h/\1tqregion\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qregion\.h/\1tqregion\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qrtlcodec\.h/\1tqrtlcodec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qrtlcodec\.h/\1tqrtlcodec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qscrollbar\.h/\1tqscrollbar\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qscrollbar\.h/\1tqscrollbar\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qscrollview\.h/\1tqscrollview\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qscrollview\.h/\1tqscrollview\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsemaphore\.h/\1tqsemaphore\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsemaphore\.h/\1tqsemaphore\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qserversocket\.h/\1tqserversocket\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qserversocket\.h/\1tqserversocket\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsession\.h/\1tqsession\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsession\.h/\1tqsession\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsessionmanager\.h/\1tqsessionmanager\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsessionmanager\.h/\1tqsessionmanager\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsettings\.h/\1tqsettings\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsettings\.h/\1tqsettings\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsgistyle\.h/\1tqsgistyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsgistyle\.h/\1tqsgistyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qshared\.h/\1tqshared\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qshared\.h/\1tqshared\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsignal\.h/\1tqsignal\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsignal\.h/\1tqsignal\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsignalmapper\.h/\1tqsignalmapper\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsignalmapper\.h/\1tqsignalmapper\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsignalslotimp\.h/\1tqsignalslotimp\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsignalslotimp\.h/\1tqsignalslotimp\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsimplerichtext\.h/\1tqsimplerichtext\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsimplerichtext\.h/\1tqsimplerichtext\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsizegrip\.h/\1tqsizegrip\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsizegrip\.h/\1tqsizegrip\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsize\.h/\1tqsize\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsize\.h/\1tqsize\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsizepolicy\.h/\1tqsizepolicy\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsizepolicy\.h/\1tqsizepolicy\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsjiscodec\.h/\1tqsjiscodec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsjiscodec\.h/\1tqsjiscodec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qslider\.h/\1tqslider\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qslider\.h/\1tqslider\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsocketdevice\.h/\1tqsocketdevice\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsocketdevice\.h/\1tqsocketdevice\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsocket\.h/\1tqsocket\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsocket\.h/\1tqsocket\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsocketnotifier\.h/\1tqsocketnotifier\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsocketnotifier\.h/\1tqsocketnotifier\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsound\.h/\1tqsound\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsound\.h/\1tqsound\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qspinbox\.h/\1tqspinbox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qspinbox\.h/\1tqspinbox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsplashscreen\.h/\1tqsplashscreen\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsplashscreen\.h/\1tqsplashscreen\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsplitter\.h/\1tqsplitter\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsplitter\.h/\1tqsplitter\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlcursor\.h/\1tqsqlcursor\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlcursor\.h/\1tqsqlcursor\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqldatabase\.h/\1tqsqldatabase\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqldatabase\.h/\1tqsqldatabase\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqldriver\.h/\1tqsqldriver\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqldriver\.h/\1tqsqldriver\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqldriverplugin\.h/\1tqsqldriverplugin\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqldriverplugin\.h/\1tqsqldriverplugin\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqleditorfactory\.h/\1tqsqleditorfactory\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqleditorfactory\.h/\1tqsqleditorfactory\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlerror\.h/\1tqsqlerror\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlerror\.h/\1tqsqlerror\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlfield\.h/\1tqsqlfield\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlfield\.h/\1tqsqlfield\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlform\.h/\1tqsqlform\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlform\.h/\1tqsqlform\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsql\.h/\1tqsql\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsql\.h/\1tqsql\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlindex\.h/\1tqsqlindex\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlindex\.h/\1tqsqlindex\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlpropertymap\.h/\1tqsqlpropertymap\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlpropertymap\.h/\1tqsqlpropertymap\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlquery\.h/\1tqsqlquery\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlquery\.h/\1tqsqlquery\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlrecord\.h/\1tqsqlrecord\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlrecord\.h/\1tqsqlrecord\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlresult\.h/\1tqsqlresult\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlresult\.h/\1tqsqlresult\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsqlselectcursor\.h/\1tqsqlselectcursor\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsqlselectcursor\.h/\1tqsqlselectcursor\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qstatusbar\.h/\1tqstatusbar\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qstatusbar\.h/\1tqstatusbar\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qstring\.h/\1tqstring\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qstring\.h/\1tqstring\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qstringlist\.h/\1tqstringlist\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qstringlist\.h/\1tqstringlist\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qstrlist\.h/\1tqstrlist\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qstrlist\.h/\1tqstrlist\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qstrvec\.h/\1tqstrvec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qstrvec\.h/\1tqstrvec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qstylefactory\.h/\1tqstylefactory\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qstylefactory\.h/\1tqstylefactory\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qstyle\.h/\1tqstyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qstyle\.h/\1tqstyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qstyleplugin\.h/\1tqstyleplugin\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qstyleplugin\.h/\1tqstyleplugin\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qstylesheet\.h/\1tqstylesheet\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qstylesheet\.h/\1tqstylesheet\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qsyntaxhighlighter\.h/\1tqsyntaxhighlighter\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qsyntaxhighlighter\.h/\1tqsyntaxhighlighter\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtabbar\.h/\1tqtabbar\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtabbar\.h/\1tqtabbar\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtabdialog\.h/\1tqtabdialog\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtabdialog\.h/\1tqtabdialog\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtable\.h/\1tqtable\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtable\.h/\1tqtable\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtabwidget\.h/\1tqtabwidget\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtabwidget\.h/\1tqtabwidget\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtextbrowser\.h/\1tqtextbrowser\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtextbrowser\.h/\1tqtextbrowser\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtextcodecfactory\.h/\1tqtextcodecfactory\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtextcodecfactory\.h/\1tqtextcodecfactory\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtextcodec\.h/\1tqtextcodec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtextcodec\.h/\1tqtextcodec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtextcodecplugin\.h/\1tqtextcodecplugin\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtextcodecplugin\.h/\1tqtextcodecplugin\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtextedit\.h/\1tqtextedit\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtextedit\.h/\1tqtextedit\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtextstream\.h/\1tqtextstream\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtextstream\.h/\1tqtextstream\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtextview\.h/\1tqtextview\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtextview\.h/\1tqtextview\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qt\.h/\1tqt\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qt\.h/\1tqt\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qthread\.h/\1tqthread\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qthread\.h/\1tqthread\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qthreadstorage\.h/\1tqthreadstorage\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qthreadstorage\.h/\1tqthreadstorage\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtimer\.h/\1tqtimer\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtimer\.h/\1tqtimer\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtl\.h/\1tqtl\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtl\.h/\1tqtl\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtoolbar\.h/\1tqtoolbar\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtoolbar\.h/\1tqtoolbar\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtoolbox\.h/\1tqtoolbox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtoolbox\.h/\1tqtoolbox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtoolbutton\.h/\1tqtoolbutton\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtoolbutton\.h/\1tqtoolbutton\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtooltip\.h/\1tqtooltip\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtooltip\.h/\1tqtooltip\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtranslator\.h/\1tqtranslator\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtranslator\.h/\1tqtranslator\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qtsciicodec\.h/\1tqtsciicodec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qtsciicodec\.h/\1tqtsciicodec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qurl\.h/\1tqurl\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qurl\.h/\1tqurl\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qurlinfo\.h/\1tqurlinfo\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qurlinfo\.h/\1tqurlinfo\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qurloperator\.h/\1tqurloperator\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qurloperator\.h/\1tqurloperator\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qutfcodec\.h/\1tqutfcodec\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qutfcodec\.h/\1tqutfcodec\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)quuid\.h/\1tquuid\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)quuid\.h/\1tquuid\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qvalidator\.h/\1tqvalidator\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qvalidator\.h/\1tqvalidator\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qvaluelist\.h/\1tqvaluelist\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qvaluelist\.h/\1tqvaluelist\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qvaluestack\.h/\1tqvaluestack\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qvaluestack\.h/\1tqvaluestack\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qvaluevector\.h/\1tqvaluevector\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qvaluevector\.h/\1tqvaluevector\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qvariant\.h/\1tqvariant\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qvariant\.h/\1tqvariant\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qvbox\.h/\1tqvbox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qvbox\.h/\1tqvbox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qvbuttongroup\.h/\1tqvbuttongroup\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qvbuttongroup\.h/\1tqvbuttongroup\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qvfbhdr\.h/\1tqvfbhdr\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qvfbhdr\.h/\1tqvfbhdr\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qvgroupbox\.h/\1tqvgroupbox\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qvgroupbox\.h/\1tqvgroupbox\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwaitcondition\.h/\1tqwaitcondition\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwaitcondition\.h/\1tqwaitcondition\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwhatsthis\.h/\1tqwhatsthis\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwhatsthis\.h/\1tqwhatsthis\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwidgetfactory\.h/\1tqwidgetfactory\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwidgetfactory\.h/\1tqwidgetfactory\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwidget\.h/\1tqwidget\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwidget\.h/\1tqwidget\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwidgetintdict\.h/\1tqwidgetintdict\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwidgetintdict\.h/\1tqwidgetintdict\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwidgetlist\.h/\1tqwidgetlist\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwidgetlist\.h/\1tqwidgetlist\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwidgetplugin\.h/\1tqwidgetplugin\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwidgetplugin\.h/\1tqwidgetplugin\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwidgetstack\.h/\1tqwidgetstack\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwidgetstack\.h/\1tqwidgetstack\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwindowdefs\.h/\1tqwindowdefs\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwindowdefs\.h/\1tqwindowdefs\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwindowsstyle\.h/\1tqwindowsstyle\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwindowsstyle\.h/\1tqwindowsstyle\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwinexport\.h/\1tqwinexport\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwinexport\.h/\1tqwinexport\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwizard\.h/\1tqwizard\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwizard\.h/\1tqwizard\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qwmatrix\.h/\1tqwmatrix\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qwmatrix\.h/\1tqwmatrix\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qworkspace\.h/\1tqworkspace\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qworkspace\.h/\1tqworkspace\.h/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^t]\)qxml\.h/\1tqxml\.h/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^t]\)qxml\.h/\1tqxml\.h/g' {} \;
diff --git a/qtinterface/convert_qt_tqt2 b/qtinterface/convert_qt_tqt2
deleted file mode 100755
index 0bdbb6d..0000000
--- a/qtinterface/convert_qt_tqt2
+++ /dev/null
@@ -1,1026 +0,0 @@
-#!/bin/bash
-
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAccel\([ :<>"()*&.,^;]\)/TQAccel\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAccel\([ :<>"()*&.,^;]\)/TQAccel\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAccessible\([ :<>"()*&.,^;]\)/TQAccessible\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAccessible\([ :<>"()*&.,^;]\)/TQAccessible\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAccessibleObject\([ :<>"()*&.,^;]\)/TQAccessibleObject\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAccessibleObject\([ :<>"()*&.,^;]\)/TQAccessibleObject\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAction\([ :<>"()*&.,^;]\)/TQAction\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAction\([ :<>"()*&.,^;]\)/TQAction\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QActionGroup\([ :<>"()*&.,^;]\)/TQActionGroup\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QActionGroup\([ :<>"()*&.,^;]\)/TQActionGroup\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QApplication\([ :<>"()*&.,^;]\)/TQApplication\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QApplication\([ :<>"()*&.,^;]\)/TQApplication\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAsciiCache\([ :<>"()*&.,^;]\)/TQAsciiCache\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAsciiCache\([ :<>"()*&.,^;]\)/TQAsciiCache\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAsciiCacheIterator\([ :<>"()*&.,^;]\)/TQAsciiCacheIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAsciiCacheIterator\([ :<>"()*&.,^;]\)/TQAsciiCacheIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAsciiDict\([ :<>"()*&.,^;]\)/TQAsciiDict\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAsciiDict\([ :<>"()*&.,^;]\)/TQAsciiDict\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAsciiDictIterator\([ :<>"()*&.,^;]\)/TQAsciiDictIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAsciiDictIterator\([ :<>"()*&.,^;]\)/TQAsciiDictIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QImageConsumer\([ :<>"()*&.,^;]\)/TQImageConsumer\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QImageConsumer\([ :<>"()*&.,^;]\)/TQImageConsumer\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QImageFormat\([ :<>"()*&.,^;]\)/TQImageFormat\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QImageFormat\([ :<>"()*&.,^;]\)/TQImageFormat\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QImageFormatType\([ :<>"()*&.,^;]\)/TQImageFormatType\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QImageFormatType\([ :<>"()*&.,^;]\)/TQImageFormatType\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QImageDecoder\([ :<>"()*&.,^;]\)/TQImageDecoder\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QImageDecoder\([ :<>"()*&.,^;]\)/TQImageDecoder\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAsyncIO\([ :<>"()*&.,^;]\)/TQAsyncIO\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAsyncIO\([ :<>"()*&.,^;]\)/TQAsyncIO\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataSink\([ :<>"()*&.,^;]\)/TQDataSink\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataSink\([ :<>"()*&.,^;]\)/TQDataSink\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataSource\([ :<>"()*&.,^;]\)/TQDataSource\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataSource\([ :<>"()*&.,^;]\)/TQDataSource\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIODeviceSource\([ :<>"()*&.,^;]\)/TQIODeviceSource\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIODeviceSource\([ :<>"()*&.,^;]\)/TQIODeviceSource\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataPump\([ :<>"()*&.,^;]\)/TQDataPump\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataPump\([ :<>"()*&.,^;]\)/TQDataPump\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBig5Codec\([ :<>"()*&.,^;]\)/TQBig5Codec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBig5Codec\([ :<>"()*&.,^;]\)/TQBig5Codec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBig5hkscsCodec\([ :<>"()*&.,^;]\)/TQBig5hkscsCodec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBig5hkscsCodec\([ :<>"()*&.,^;]\)/TQBig5hkscsCodec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBitVal\([ :<>"()*&.,^;]\)/TQBitVal\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBitVal\([ :<>"()*&.,^;]\)/TQBitVal\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBitArray\([ :<>"()*&.,^;]\)/TQBitArray\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBitArray\([ :<>"()*&.,^;]\)/TQBitArray\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBitmap\([ :<>"()*&.,^;]\)/TQBitmap\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBitmap\([ :<>"()*&.,^;]\)/TQBitmap\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBrush\([ :<>"()*&.,^;]\)/TQBrush\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBrush\([ :<>"()*&.,^;]\)/TQBrush\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBuffer\([ :<>"()*&.,^;]\)/TQBuffer\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBuffer\([ :<>"()*&.,^;]\)/TQBuffer\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QButtonGroup\([ :<>"()*&.,^;]\)/TQButtonGroup\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QButtonGroup\([ :<>"()*&.,^;]\)/TQButtonGroup\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QButton\([ :<>"()*&.,^;]\)/TQButton\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QButton\([ :<>"()*&.,^;]\)/TQButton\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCache\([ :<>"()*&.,^;]\)/TQCache\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCache\([ :<>"()*&.,^;]\)/TQCache\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCacheIterator\([ :<>"()*&.,^;]\)/TQCacheIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCacheIterator\([ :<>"()*&.,^;]\)/TQCacheIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasChunk\([ :<>"()*&.,^;]\)/TQCanvasChunk\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasChunk\([ :<>"()*&.,^;]\)/TQCanvasChunk\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasItemList\([ :<>"()*&.,^;]\)/TQCanvasItemList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasItemList\([ :<>"()*&.,^;]\)/TQCanvasItemList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasItemExtra\([ :<>"()*&.,^;]\)/TQCanvasItemExtra\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasItemExtra\([ :<>"()*&.,^;]\)/TQCanvasItemExtra\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasItem\([ :<>"()*&.,^;]\)/TQCanvasItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasItem\([ :<>"()*&.,^;]\)/TQCanvasItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasData\([ :<>"()*&.,^;]\)/TQCanvasData\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasData\([ :<>"()*&.,^;]\)/TQCanvasData\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvas\([ :<>"()*&.,^;]\)/TQCanvas\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvas\([ :<>"()*&.,^;]\)/TQCanvas\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasViewData\([ :<>"()*&.,^;]\)/TQCanvasViewData\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasViewData\([ :<>"()*&.,^;]\)/TQCanvasViewData\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasView\([ :<>"()*&.,^;]\)/TQCanvasView\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasView\([ :<>"()*&.,^;]\)/TQCanvasView\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasPixmap\([ :<>"()*&.,^;]\)/TQCanvasPixmap\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasPixmap\([ :<>"()*&.,^;]\)/TQCanvasPixmap\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasPixmapArray\([ :<>"()*&.,^;]\)/TQCanvasPixmapArray\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasPixmapArray\([ :<>"()*&.,^;]\)/TQCanvasPixmapArray\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasSprite\([ :<>"()*&.,^;]\)/TQCanvasSprite\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasSprite\([ :<>"()*&.,^;]\)/TQCanvasSprite\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPolygonalProcessor\([ :<>"()*&.,^;]\)/TQPolygonalProcessor\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPolygonalProcessor\([ :<>"()*&.,^;]\)/TQPolygonalProcessor\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasPolygonalItem\([ :<>"()*&.,^;]\)/TQCanvasPolygonalItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasPolygonalItem\([ :<>"()*&.,^;]\)/TQCanvasPolygonalItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasRectangle\([ :<>"()*&.,^;]\)/TQCanvasRectangle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasRectangle\([ :<>"()*&.,^;]\)/TQCanvasRectangle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasPolygon\([ :<>"()*&.,^;]\)/TQCanvasPolygon\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasPolygon\([ :<>"()*&.,^;]\)/TQCanvasPolygon\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasSpline\([ :<>"()*&.,^;]\)/TQCanvasSpline\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasSpline\([ :<>"()*&.,^;]\)/TQCanvasSpline\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasLine\([ :<>"()*&.,^;]\)/TQCanvasLine\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasLine\([ :<>"()*&.,^;]\)/TQCanvasLine\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasEllipse\([ :<>"()*&.,^;]\)/TQCanvasEllipse\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasEllipse\([ :<>"()*&.,^;]\)/TQCanvasEllipse\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasTextExtra\([ :<>"()*&.,^;]\)/TQCanvasTextExtra\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasTextExtra\([ :<>"()*&.,^;]\)/TQCanvasTextExtra\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCanvasText\([ :<>"()*&.,^;]\)/TQCanvasText\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCanvasText\([ :<>"()*&.,^;]\)/TQCanvasText\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCDEStyle\([ :<>"()*&.,^;]\)/TQCDEStyle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCDEStyle\([ :<>"()*&.,^;]\)/TQCDEStyle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCheckBox\([ :<>"()*&.,^;]\)/TQCheckBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCheckBox\([ :<>"()*&.,^;]\)/TQCheckBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCleanupHandler\([ :<>"()*&.,^;]\)/TQCleanupHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCleanupHandler\([ :<>"()*&.,^;]\)/TQCleanupHandler\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSingleCleanupHandler\([ :<>"()*&.,^;]\)/TQSingleCleanupHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSingleCleanupHandler\([ :<>"()*&.,^;]\)/TQSingleCleanupHandler\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSharedCleanupHandler\([ :<>"()*&.,^;]\)/TQSharedCleanupHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSharedCleanupHandler\([ :<>"()*&.,^;]\)/TQSharedCleanupHandler\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QShared\([ :<>"()*&.,^;]\)/TQShared\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QShared\([ :<>"()*&.,^;]\)/TQShared\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QColor\([ :<>"()*&.,^;]\)/TQColor\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QColor\([ :<>"()*&.,^;]\)/TQColor\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStrList\([ :<>"()*&.,^;]\)/TQStrList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStrList\([ :<>"()*&.,^;]\)/TQStrList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStringList\([ :<>"()*&.,^;]\)/TQStringList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStringList\([ :<>"()*&.,^;]\)/TQStringList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLineEdit\([ :<>"()*&.,^;]\)/TQLineEdit\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLineEdit\([ :<>"()*&.,^;]\)/TQLineEdit\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValidator\([ :<>"()*&.,^;]\)/TQValidator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValidator\([ :<>"()*&.,^;]\)/TQValidator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QListBox\([ :<>"()*&.,^;]\)/TQListBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QListBox\([ :<>"()*&.,^;]\)/TQListBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QComboBoxData\([ :<>"()*&.,^;]\)/TQComboBoxData\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QComboBoxData\([ :<>"()*&.,^;]\)/TQComboBoxData\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWheelEvent\([ :<>"()*&.,^;]\)/TQWheelEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWheelEvent\([ :<>"()*&.,^;]\)/TQWheelEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QComboBox\([ :<>"()*&.,^;]\)/TQComboBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QComboBox\([ :<>"()*&.,^;]\)/TQComboBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCommonStyle\([ :<>"()*&.,^;]\)/TQCommonStyle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCommonStyle\([ :<>"()*&.,^;]\)/TQCommonStyle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCompactStyle\([ :<>"()*&.,^;]\)/TQCompactStyle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCompactStyle\([ :<>"()*&.,^;]\)/TQCompactStyle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QConnection\([ :<>"()*&.,^;]\)/TQConnection\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QConnection\([ :<>"()*&.,^;]\)/TQConnection\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCString\([ :<>"()*&.,^;]\)/TQCString\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCString\([ :<>"()*&.,^;]\)/TQCString\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QByteArray\([ :<>"()*&.,^;]\)/TQByteArray\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QByteArray\([ :<>"()*&.,^;]\)/TQByteArray\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCString\([ :<>"()*&.,^;]\)/TQCString\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCString\([ :<>"()*&.,^;]\)/TQCString\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCursor\([ :<>"()*&.,^;]\)/TQCursor\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCursor\([ :<>"()*&.,^;]\)/TQCursor\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlForm\([ :<>"()*&.,^;]\)/TQSqlForm\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlForm\([ :<>"()*&.,^;]\)/TQSqlForm\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataBrowserPrivate\([ :<>"()*&.,^;]\)/TQDataBrowserPrivate\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataBrowserPrivate\([ :<>"()*&.,^;]\)/TQDataBrowserPrivate\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataBrowser\([ :<>"()*&.,^;]\)/TQDataBrowser\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataBrowser\([ :<>"()*&.,^;]\)/TQDataBrowser\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataStream\([ :<>"()*&.,^;]\)/TQDataStream\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataStream\([ :<>"()*&.,^;]\)/TQDataStream\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataStream\([ :<>"()*&.,^;]\)/TQDataStream\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataStream\([ :<>"()*&.,^;]\)/TQDataStream\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPainter\([ :<>"()*&.,^;]\)/TQPainter\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPainter\([ :<>"()*&.,^;]\)/TQPainter\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlField\([ :<>"()*&.,^;]\)/TQSqlField\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlField\([ :<>"()*&.,^;]\)/TQSqlField\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlPropertyMap\([ :<>"()*&.,^;]\)/TQSqlPropertyMap\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlPropertyMap\([ :<>"()*&.,^;]\)/TQSqlPropertyMap\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataTablePrivate\([ :<>"()*&.,^;]\)/TQDataTablePrivate\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataTablePrivate\([ :<>"()*&.,^;]\)/TQDataTablePrivate\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataTable\([ :<>"()*&.,^;]\)/TQDataTable\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataTable\([ :<>"()*&.,^;]\)/TQDataTable\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDataView\([ :<>"()*&.,^;]\)/TQDataView\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDataView\([ :<>"()*&.,^;]\)/TQDataView\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDateTimeEditBase\([ :<>"()*&.,^;]\)/TQDateTimeEditBase\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDateTimeEditBase\([ :<>"()*&.,^;]\)/TQDateTimeEditBase\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDate\([ :<>"()*&.,^;]\)/TQDate\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDate\([ :<>"()*&.,^;]\)/TQDate\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTime\([ :<>"()*&.,^;]\)/TQTime\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTime\([ :<>"()*&.,^;]\)/TQTime\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDateTime\([ :<>"()*&.,^;]\)/TQDateTime\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDateTime\([ :<>"()*&.,^;]\)/TQDateTime\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDeepCopy\([ :<>"()*&.,^;]\)/TQDeepCopy\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDeepCopy\([ :<>"()*&.,^;]\)/TQDeepCopy\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDesktopWidget\([ :<>"()*&.,^;]\)/TQDesktopWidget\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDesktopWidget\([ :<>"()*&.,^;]\)/TQDesktopWidget\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDial\([ :<>"()*&.,^;]\)/TQDial\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDial\([ :<>"()*&.,^;]\)/TQDial\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDialog\([ :<>"()*&.,^;]\)/TQDialog\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDialog\([ :<>"()*&.,^;]\)/TQDialog\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDict\([ :<>"()*&.,^;]\)/TQDict\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDict\([ :<>"()*&.,^;]\)/TQDict\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDictIterator\([ :<>"()*&.,^;]\)/TQDictIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDictIterator\([ :<>"()*&.,^;]\)/TQDictIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDir\([ :<>"()*&.,^;]\)/TQDir\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDir\([ :<>"()*&.,^;]\)/TQDir\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDns\([ :<>"()*&.,^;]\)/TQDns\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDns\([ :<>"()*&.,^;]\)/TQDns\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDnsSocket\([ :<>"()*&.,^;]\)/TQDnsSocket\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDnsSocket\([ :<>"()*&.,^;]\)/TQDnsSocket\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDockArea\([ :<>"()*&.,^;]\)/TQDockArea\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDockArea\([ :<>"()*&.,^;]\)/TQDockArea\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDockAreaLayout\([ :<>"()*&.,^;]\)/TQDockAreaLayout\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDockAreaLayout\([ :<>"()*&.,^;]\)/TQDockAreaLayout\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDockWindow\([ :<>"()*&.,^;]\)/TQDockWindow\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDockWindow\([ :<>"()*&.,^;]\)/TQDockWindow\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomImplementation\([ :<>"()*&.,^;]\)/TQDomImplementation\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomImplementation\([ :<>"()*&.,^;]\)/TQDomImplementation\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomNode\([ :<>"()*&.,^;]\)/TQDomNode\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomNode\([ :<>"()*&.,^;]\)/TQDomNode\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomNodeList\([ :<>"()*&.,^;]\)/TQDomNodeList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomNodeList\([ :<>"()*&.,^;]\)/TQDomNodeList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomDocumentType\([ :<>"()*&.,^;]\)/TQDomDocumentType\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomDocumentType\([ :<>"()*&.,^;]\)/TQDomDocumentType\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomDocument\([ :<>"()*&.,^;]\)/TQDomDocument\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomDocument\([ :<>"()*&.,^;]\)/TQDomDocument\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomNamedNodeMap\([ :<>"()*&.,^;]\)/TQDomNamedNodeMap\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomNamedNodeMap\([ :<>"()*&.,^;]\)/TQDomNamedNodeMap\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomDocumentFragment\([ :<>"()*&.,^;]\)/TQDomDocumentFragment\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomDocumentFragment\([ :<>"()*&.,^;]\)/TQDomDocumentFragment\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomCharacterData\([ :<>"()*&.,^;]\)/TQDomCharacterData\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomCharacterData\([ :<>"()*&.,^;]\)/TQDomCharacterData\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomAttr\([ :<>"()*&.,^;]\)/TQDomAttr\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomAttr\([ :<>"()*&.,^;]\)/TQDomAttr\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomElement\([ :<>"()*&.,^;]\)/TQDomElement\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomElement\([ :<>"()*&.,^;]\)/TQDomElement\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomText\([ :<>"()*&.,^;]\)/TQDomText\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomText\([ :<>"()*&.,^;]\)/TQDomText\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomComment\([ :<>"()*&.,^;]\)/TQDomComment\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomComment\([ :<>"()*&.,^;]\)/TQDomComment\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomCDATASection\([ :<>"()*&.,^;]\)/TQDomCDATASection\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomCDATASection\([ :<>"()*&.,^;]\)/TQDomCDATASection\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomNotation\([ :<>"()*&.,^;]\)/TQDomNotation\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomNotation\([ :<>"()*&.,^;]\)/TQDomNotation\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomEntity\([ :<>"()*&.,^;]\)/TQDomEntity\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomEntity\([ :<>"()*&.,^;]\)/TQDomEntity\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomEntityReference\([ :<>"()*&.,^;]\)/TQDomEntityReference\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomEntityReference\([ :<>"()*&.,^;]\)/TQDomEntityReference\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDomProcessingInstruction\([ :<>"()*&.,^;]\)/TQDomProcessingInstruction\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDomProcessingInstruction\([ :<>"()*&.,^;]\)/TQDomProcessingInstruction\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDragObject\([ :<>"()*&.,^;]\)/TQDragObject\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDragObject\([ :<>"()*&.,^;]\)/TQDragObject\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStoredDrag\([ :<>"()*&.,^;]\)/TQStoredDrag\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStoredDrag\([ :<>"()*&.,^;]\)/TQStoredDrag\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextDrag\([ :<>"()*&.,^;]\)/TQTextDrag\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextDrag\([ :<>"()*&.,^;]\)/TQTextDrag\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QImageDrag\([ :<>"()*&.,^;]\)/TQImageDrag\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QImageDrag\([ :<>"()*&.,^;]\)/TQImageDrag\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QUriDrag\([ :<>"()*&.,^;]\)/TQUriDrag\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QUriDrag\([ :<>"()*&.,^;]\)/TQUriDrag\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QColorDrag\([ :<>"()*&.,^;]\)/TQColorDrag\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QColorDrag\([ :<>"()*&.,^;]\)/TQColorDrag\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDropSite\([ :<>"()*&.,^;]\)/TQDropSite\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDropSite\([ :<>"()*&.,^;]\)/TQDropSite\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QEditorFactory\([ :<>"()*&.,^;]\)/TQEditorFactory\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QEditorFactory\([ :<>"()*&.,^;]\)/TQEditorFactory\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QErrorMessage\([ :<>"()*&.,^;]\)/TQErrorMessage\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QErrorMessage\([ :<>"()*&.,^;]\)/TQErrorMessage\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QEucJpCodec\([ :<>"()*&.,^;]\)/TQEucJpCodec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QEucJpCodec\([ :<>"()*&.,^;]\)/TQEucJpCodec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QEucKrCodec\([ :<>"()*&.,^;]\)/TQEucKrCodec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QEucKrCodec\([ :<>"()*&.,^;]\)/TQEucKrCodec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QEvent\([ :<>"()*&.,^;]\)/TQEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QEvent\([ :<>"()*&.,^;]\)/TQEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTimerEvent\([ :<>"()*&.,^;]\)/TQTimerEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTimerEvent\([ :<>"()*&.,^;]\)/TQTimerEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMouseEvent\([ :<>"()*&.,^;]\)/TQMouseEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMouseEvent\([ :<>"()*&.,^;]\)/TQMouseEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWheelEvent\([ :<>"()*&.,^;]\)/TQWheelEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWheelEvent\([ :<>"()*&.,^;]\)/TQWheelEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTabletEvent\([ :<>"()*&.,^;]\)/TQTabletEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTabletEvent\([ :<>"()*&.,^;]\)/TQTabletEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QKeyEvent\([ :<>"()*&.,^;]\)/TQKeyEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QKeyEvent\([ :<>"()*&.,^;]\)/TQKeyEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFocusEvent\([ :<>"()*&.,^;]\)/TQFocusEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFocusEvent\([ :<>"()*&.,^;]\)/TQFocusEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPaintEvent\([ :<>"()*&.,^;]\)/TQPaintEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPaintEvent\([ :<>"()*&.,^;]\)/TQPaintEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMoveEvent\([ :<>"()*&.,^;]\)/TQMoveEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMoveEvent\([ :<>"()*&.,^;]\)/TQMoveEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QResizeEvent\([ :<>"()*&.,^;]\)/TQResizeEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QResizeEvent\([ :<>"()*&.,^;]\)/TQResizeEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCloseEvent\([ :<>"()*&.,^;]\)/TQCloseEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCloseEvent\([ :<>"()*&.,^;]\)/TQCloseEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIconDragEvent\([ :<>"()*&.,^;]\)/TQIconDragEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIconDragEvent\([ :<>"()*&.,^;]\)/TQIconDragEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QShowEvent\([ :<>"()*&.,^;]\)/TQShowEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QShowEvent\([ :<>"()*&.,^;]\)/TQShowEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHideEvent\([ :<>"()*&.,^;]\)/TQHideEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHideEvent\([ :<>"()*&.,^;]\)/TQHideEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QContextMenuEvent\([ :<>"()*&.,^;]\)/TQContextMenuEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QContextMenuEvent\([ :<>"()*&.,^;]\)/TQContextMenuEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIMEvent\([ :<>"()*&.,^;]\)/TQIMEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIMEvent\([ :<>"()*&.,^;]\)/TQIMEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIMComposeEvent\([ :<>"()*&.,^;]\)/TQIMComposeEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIMComposeEvent\([ :<>"()*&.,^;]\)/TQIMComposeEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDropEvent\([ :<>"()*&.,^;]\)/TQDropEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDropEvent\([ :<>"()*&.,^;]\)/TQDropEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDragMoveEvent\([ :<>"()*&.,^;]\)/TQDragMoveEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDragMoveEvent\([ :<>"()*&.,^;]\)/TQDragMoveEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDragEnterEvent\([ :<>"()*&.,^;]\)/TQDragEnterEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDragEnterEvent\([ :<>"()*&.,^;]\)/TQDragEnterEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDragResponseEvent\([ :<>"()*&.,^;]\)/TQDragResponseEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDragResponseEvent\([ :<>"()*&.,^;]\)/TQDragResponseEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDragLeaveEvent\([ :<>"()*&.,^;]\)/TQDragLeaveEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDragLeaveEvent\([ :<>"()*&.,^;]\)/TQDragLeaveEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QChildEvent\([ :<>"()*&.,^;]\)/TQChildEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QChildEvent\([ :<>"()*&.,^;]\)/TQChildEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCustomEvent\([ :<>"()*&.,^;]\)/TQCustomEvent\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCustomEvent\([ :<>"()*&.,^;]\)/TQCustomEvent\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QEventLoop\([ :<>"()*&.,^;]\)/TQEventLoop\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QEventLoop\([ :<>"()*&.,^;]\)/TQEventLoop\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFileIconProvider\([ :<>"()*&.,^;]\)/TQFileIconProvider\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFileIconProvider\([ :<>"()*&.,^;]\)/TQFileIconProvider\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFilePreview\([ :<>"()*&.,^;]\)/TQFilePreview\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFilePreview\([ :<>"()*&.,^;]\)/TQFilePreview\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFileDialog\([ :<>"()*&.,^;]\)/TQFileDialog\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFileDialog\([ :<>"()*&.,^;]\)/TQFileDialog\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFile\([ :<>"()*&.,^;]\)/TQFile\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFile\([ :<>"()*&.,^;]\)/TQFile\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFile\([ :<>"()*&.,^;]\)/TQFile\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFile\([ :<>"()*&.,^;]\)/TQFile\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFileInfo\([ :<>"()*&.,^;]\)/TQFileInfo\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFileInfo\([ :<>"()*&.,^;]\)/TQFileInfo\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFileInfoList\([ :<>"()*&.,^;]\)/TQFileInfoList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFileInfoList\([ :<>"()*&.,^;]\)/TQFileInfoList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFileInfoListIterator\([ :<>"()*&.,^;]\)/TQFileInfoListIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFileInfoListIterator\([ :<>"()*&.,^;]\)/TQFileInfoListIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFocusData\([ :<>"()*&.,^;]\)/TQFocusData\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFocusData\([ :<>"()*&.,^;]\)/TQFocusData\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFontDatabase\([ :<>"()*&.,^;]\)/TQFontDatabase\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFontDatabase\([ :<>"()*&.,^;]\)/TQFontDatabase\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFont\([ :<>"()*&.,^;]\)/TQFont\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFont\([ :<>"()*&.,^;]\)/TQFont\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFontInfo\([ :<>"()*&.,^;]\)/TQFontInfo\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFontInfo\([ :<>"()*&.,^;]\)/TQFontInfo\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFontMetrics\([ :<>"()*&.,^;]\)/TQFontMetrics\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFontMetrics\([ :<>"()*&.,^;]\)/TQFontMetrics\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFrame\([ :<>"()*&.,^;]\)/TQFrame\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFrame\([ :<>"()*&.,^;]\)/TQFrame\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QFtp\([ :<>"()*&.,^;]\)/TQFtp\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QFtp\([ :<>"()*&.,^;]\)/TQFtp\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGArray\([ :<>"()*&.,^;]\)/TQGArray\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGArray\([ :<>"()*&.,^;]\)/TQGArray\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGb18030Codec\([ :<>"()*&.,^;]\)/TQGb18030Codec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGb18030Codec\([ :<>"()*&.,^;]\)/TQGb18030Codec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGbkCodec\([ :<>"()*&.,^;]\)/TQGbkCodec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGbkCodec\([ :<>"()*&.,^;]\)/TQGbkCodec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGb2312Codec\([ :<>"()*&.,^;]\)/TQGb2312Codec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGb2312Codec\([ :<>"()*&.,^;]\)/TQGb2312Codec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGCache\([ :<>"()*&.,^;]\)/TQGCache\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGCache\([ :<>"()*&.,^;]\)/TQGCache\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGCacheIterator\([ :<>"()*&.,^;]\)/TQGCacheIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGCacheIterator\([ :<>"()*&.,^;]\)/TQGCacheIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBaseBucket\([ :<>"()*&.,^;]\)/TQBaseBucket\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBaseBucket\([ :<>"()*&.,^;]\)/TQBaseBucket\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStringBucket\([ :<>"()*&.,^;]\)/TQStringBucket\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStringBucket\([ :<>"()*&.,^;]\)/TQStringBucket\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QAsciiBucket\([ :<>"()*&.,^;]\)/TQAsciiBucket\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QAsciiBucket\([ :<>"()*&.,^;]\)/TQAsciiBucket\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIntBucket\([ :<>"()*&.,^;]\)/TQIntBucket\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIntBucket\([ :<>"()*&.,^;]\)/TQIntBucket\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrBucket\([ :<>"()*&.,^;]\)/TQPtrBucket\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrBucket\([ :<>"()*&.,^;]\)/TQPtrBucket\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGDict\([ :<>"()*&.,^;]\)/TQGDict\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGDict\([ :<>"()*&.,^;]\)/TQGDict\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGDictIterator\([ :<>"()*&.,^;]\)/TQGDictIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGDictIterator\([ :<>"()*&.,^;]\)/TQGDictIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGLColormap\([ :<>"()*&.,^;]\)/TQGLColormap\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGLColormap\([ :<>"()*&.,^;]\)/TQGLColormap\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGL\([ :<>"()*&.,^;]\)/TQGL\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGL\([ :<>"()*&.,^;]\)/TQGL\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGLFormat\([ :<>"()*&.,^;]\)/TQGLFormat\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGLFormat\([ :<>"()*&.,^;]\)/TQGLFormat\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGLContext\([ :<>"()*&.,^;]\)/TQGLContext\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGLContext\([ :<>"()*&.,^;]\)/TQGLContext\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGLWidget\([ :<>"()*&.,^;]\)/TQGLWidget\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGLWidget\([ :<>"()*&.,^;]\)/TQGLWidget\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLNode\([ :<>"()*&.,^;]\)/TQLNode\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLNode\([ :<>"()*&.,^;]\)/TQLNode\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGList\([ :<>"()*&.,^;]\)/TQGList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGList\([ :<>"()*&.,^;]\)/TQGList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGListIterator\([ :<>"()*&.,^;]\)/TQGListIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGListIterator\([ :<>"()*&.,^;]\)/TQGListIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGListStdIterator\([ :<>"()*&.,^;]\)/TQGListStdIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGListStdIterator\([ :<>"()*&.,^;]\)/TQGListStdIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGPlugin\([ :<>"()*&.,^;]\)/TQGPlugin\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGPlugin\([ :<>"()*&.,^;]\)/TQGPlugin\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGrid\([ :<>"()*&.,^;]\)/TQGrid\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGrid\([ :<>"()*&.,^;]\)/TQGrid\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGridView\([ :<>"()*&.,^;]\)/TQGridView\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGridView\([ :<>"()*&.,^;]\)/TQGridView\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGroupBox\([ :<>"()*&.,^;]\)/TQGroupBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGroupBox\([ :<>"()*&.,^;]\)/TQGroupBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGuardedPtr\([ :<>"()*&.,^;]\)/TQGuardedPtr\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGuardedPtr\([ :<>"()*&.,^;]\)/TQGuardedPtr\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGuardedPtrPrivate\([ :<>"()*&.,^;]\)/TQGuardedPtrPrivate\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGuardedPtrPrivate\([ :<>"()*&.,^;]\)/TQGuardedPtrPrivate\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGVector\([ :<>"()*&.,^;]\)/TQGVector\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGVector\([ :<>"()*&.,^;]\)/TQGVector\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHBox\([ :<>"()*&.,^;]\)/TQHBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHBox\([ :<>"()*&.,^;]\)/TQHBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHButtonGroup\([ :<>"()*&.,^;]\)/TQHButtonGroup\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHButtonGroup\([ :<>"()*&.,^;]\)/TQHButtonGroup\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHeader\([ :<>"()*&.,^;]\)/TQHeader\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHeader\([ :<>"()*&.,^;]\)/TQHeader\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHGroupBox\([ :<>"()*&.,^;]\)/TQHGroupBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHGroupBox\([ :<>"()*&.,^;]\)/TQHGroupBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHostAddress\([ :<>"()*&.,^;]\)/TQHostAddress\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHostAddress\([ :<>"()*&.,^;]\)/TQHostAddress\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHttpHeader\([ :<>"()*&.,^;]\)/TQHttpHeader\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHttpHeader\([ :<>"()*&.,^;]\)/TQHttpHeader\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHttpResponseHeader\([ :<>"()*&.,^;]\)/TQHttpResponseHeader\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHttpResponseHeader\([ :<>"()*&.,^;]\)/TQHttpResponseHeader\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHttpRequestHeader\([ :<>"()*&.,^;]\)/TQHttpRequestHeader\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHttpRequestHeader\([ :<>"()*&.,^;]\)/TQHttpRequestHeader\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHttp\([ :<>"()*&.,^;]\)/TQHttp\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHttp\([ :<>"()*&.,^;]\)/TQHttp\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIconSet\([ :<>"()*&.,^;]\)/TQIconSet\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIconSet\([ :<>"()*&.,^;]\)/TQIconSet\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIconFactory\([ :<>"()*&.,^;]\)/TQIconFactory\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIconFactory\([ :<>"()*&.,^;]\)/TQIconFactory\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIconDragItem\([ :<>"()*&.,^;]\)/TQIconDragItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIconDragItem\([ :<>"()*&.,^;]\)/TQIconDragItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIconDrag\([ :<>"()*&.,^;]\)/TQIconDrag\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIconDrag\([ :<>"()*&.,^;]\)/TQIconDrag\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIconViewItem\([ :<>"()*&.,^;]\)/TQIconViewItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIconViewItem\([ :<>"()*&.,^;]\)/TQIconViewItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIconView\([ :<>"()*&.,^;]\)/TQIconView\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIconView\([ :<>"()*&.,^;]\)/TQIconView\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QImageFormatPlugin\([ :<>"()*&.,^;]\)/TQImageFormatPlugin\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QImageFormatPlugin\([ :<>"()*&.,^;]\)/TQImageFormatPlugin\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QImageTextKeyLang\([ :<>"()*&.,^;]\)/TQImageTextKeyLang\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QImageTextKeyLang\([ :<>"()*&.,^;]\)/TQImageTextKeyLang\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QImage\([ :<>"()*&.,^;]\)/TQImage\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QImage\([ :<>"()*&.,^;]\)/TQImage\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QImageIO\([ :<>"()*&.,^;]\)/TQImageIO\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QImageIO\([ :<>"()*&.,^;]\)/TQImageIO\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QInputContextFactory\([ :<>"()*&.,^;]\)/TQInputContextFactory\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QInputContextFactory\([ :<>"()*&.,^;]\)/TQInputContextFactory\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QInputContext\([ :<>"()*&.,^;]\)/TQInputContext\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QInputContext\([ :<>"()*&.,^;]\)/TQInputContext\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIntCache\([ :<>"()*&.,^;]\)/TQIntCache\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIntCache\([ :<>"()*&.,^;]\)/TQIntCache\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIntCacheIterator\([ :<>"()*&.,^;]\)/TQIntCacheIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIntCacheIterator\([ :<>"()*&.,^;]\)/TQIntCacheIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIntDict\([ :<>"()*&.,^;]\)/TQIntDict\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIntDict\([ :<>"()*&.,^;]\)/TQIntDict\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIntDictIterator\([ :<>"()*&.,^;]\)/TQIntDictIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIntDictIterator\([ :<>"()*&.,^;]\)/TQIntDictIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIODevice\([ :<>"()*&.,^;]\)/TQIODevice\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIODevice\([ :<>"()*&.,^;]\)/TQIODevice\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QJisCodec\([ :<>"()*&.,^;]\)/TQJisCodec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QJisCodec\([ :<>"()*&.,^;]\)/TQJisCodec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QJpUnicodeConv\([ :<>"()*&.,^;]\)/TQJpUnicodeConv\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QJpUnicodeConv\([ :<>"()*&.,^;]\)/TQJpUnicodeConv\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QKeySequence\([ :<>"()*&.,^;]\)/TQKeySequence\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QKeySequence\([ :<>"()*&.,^;]\)/TQKeySequence\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLabel\([ :<>"()*&.,^;]\)/TQLabel\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLabel\([ :<>"()*&.,^;]\)/TQLabel\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGLayoutIterator\([ :<>"()*&.,^;]\)/TQGLayoutIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGLayoutIterator\([ :<>"()*&.,^;]\)/TQGLayoutIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLayoutIterator\([ :<>"()*&.,^;]\)/TQLayoutIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLayoutIterator\([ :<>"()*&.,^;]\)/TQLayoutIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLayoutItem\([ :<>"()*&.,^;]\)/TQLayoutItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLayoutItem\([ :<>"()*&.,^;]\)/TQLayoutItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSpacerItem\([ :<>"()*&.,^;]\)/TQSpacerItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSpacerItem\([ :<>"()*&.,^;]\)/TQSpacerItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidgetItem\([ :<>"()*&.,^;]\)/TQWidgetItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidgetItem\([ :<>"()*&.,^;]\)/TQWidgetItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLayout\([ :<>"()*&.,^;]\)/TQLayout\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLayout\([ :<>"()*&.,^;]\)/TQLayout\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QGridLayout\([ :<>"()*&.,^;]\)/TQGridLayout\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QGridLayout\([ :<>"()*&.,^;]\)/TQGridLayout\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBoxLayout\([ :<>"()*&.,^;]\)/TQBoxLayout\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBoxLayout\([ :<>"()*&.,^;]\)/TQBoxLayout\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHBoxLayout\([ :<>"()*&.,^;]\)/TQHBoxLayout\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHBoxLayout\([ :<>"()*&.,^;]\)/TQHBoxLayout\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QVBoxLayout\([ :<>"()*&.,^;]\)/TQVBoxLayout\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QVBoxLayout\([ :<>"()*&.,^;]\)/TQVBoxLayout\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLCDNumber\([ :<>"()*&.,^;]\)/TQLCDNumber\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLCDNumber\([ :<>"()*&.,^;]\)/TQLCDNumber\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLibrary\([ :<>"()*&.,^;]\)/TQLibrary\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLibrary\([ :<>"()*&.,^;]\)/TQLibrary\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLineEdit\([ :<>"()*&.,^;]\)/TQLineEdit\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLineEdit\([ :<>"()*&.,^;]\)/TQLineEdit\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QListBox\([ :<>"()*&.,^;]\)/TQListBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QListBox\([ :<>"()*&.,^;]\)/TQListBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QListBoxItem\([ :<>"()*&.,^;]\)/TQListBoxItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QListBoxItem\([ :<>"()*&.,^;]\)/TQListBoxItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QListBoxText\([ :<>"()*&.,^;]\)/TQListBoxText\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QListBoxText\([ :<>"()*&.,^;]\)/TQListBoxText\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QListBoxPixmap\([ :<>"()*&.,^;]\)/TQListBoxPixmap\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QListBoxPixmap\([ :<>"()*&.,^;]\)/TQListBoxPixmap\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QListViewItem\([ :<>"()*&.,^;]\)/TQListViewItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QListViewItem\([ :<>"()*&.,^;]\)/TQListViewItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QListView\([ :<>"()*&.,^;]\)/TQListView\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QListView\([ :<>"()*&.,^;]\)/TQListView\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCheckListItem\([ :<>"()*&.,^;]\)/TQCheckListItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCheckListItem\([ :<>"()*&.,^;]\)/TQCheckListItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QListViewItemIterator\([ :<>"()*&.,^;]\)/TQListViewItemIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QListViewItemIterator\([ :<>"()*&.,^;]\)/TQListViewItemIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLocale\([ :<>"()*&.,^;]\)/TQLocale\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLocale\([ :<>"()*&.,^;]\)/TQLocale\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QLocalFs\([ :<>"()*&.,^;]\)/TQLocalFs\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QLocalFs\([ :<>"()*&.,^;]\)/TQLocalFs\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMainWindow\([ :<>"()*&.,^;]\)/TQMainWindow\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMainWindow\([ :<>"()*&.,^;]\)/TQMainWindow\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMapIterator\([ :<>"()*&.,^;]\)/TQMapIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMapIterator\([ :<>"()*&.,^;]\)/TQMapIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMapConstIterator\([ :<>"()*&.,^;]\)/TQMapConstIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMapConstIterator\([ :<>"()*&.,^;]\)/TQMapConstIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMapPrivateBase\([ :<>"()*&.,^;]\)/TQMapPrivateBase\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMapPrivateBase\([ :<>"()*&.,^;]\)/TQMapPrivateBase\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMapPrivate\([ :<>"()*&.,^;]\)/TQMapPrivate\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMapPrivate\([ :<>"()*&.,^;]\)/TQMapPrivate\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMap\([ :<>"()*&.,^;]\)/TQMap\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMap\([ :<>"()*&.,^;]\)/TQMap\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMemArray\([ :<>"()*&.,^;]\)/TQMemArray\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMemArray\([ :<>"()*&.,^;]\)/TQMemArray\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMenuBar\([ :<>"()*&.,^;]\)/TQMenuBar\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMenuBar\([ :<>"()*&.,^;]\)/TQMenuBar\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMenuItem\([ :<>"()*&.,^;]\)/TQMenuItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMenuItem\([ :<>"()*&.,^;]\)/TQMenuItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCustomMenuItem\([ :<>"()*&.,^;]\)/TQCustomMenuItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCustomMenuItem\([ :<>"()*&.,^;]\)/TQCustomMenuItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMenuData\([ :<>"()*&.,^;]\)/TQMenuData\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMenuData\([ :<>"()*&.,^;]\)/TQMenuData\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMessageBox\([ :<>"()*&.,^;]\)/TQMessageBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMessageBox\([ :<>"()*&.,^;]\)/TQMessageBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMetaProperty\([ :<>"()*&.,^;]\)/TQMetaProperty\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMetaProperty\([ :<>"()*&.,^;]\)/TQMetaProperty\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMetaObject\([ :<>"()*&.,^;]\)/TQMetaObject\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMetaObject\([ :<>"()*&.,^;]\)/TQMetaObject\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMetaObjectCleanUp\([ :<>"()*&.,^;]\)/TQMetaObjectCleanUp\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMetaObjectCleanUp\([ :<>"()*&.,^;]\)/TQMetaObjectCleanUp\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMimeSource\([ :<>"()*&.,^;]\)/TQMimeSource\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMimeSource\([ :<>"()*&.,^;]\)/TQMimeSource\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMimeSourceFactory\([ :<>"()*&.,^;]\)/TQMimeSourceFactory\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMimeSourceFactory\([ :<>"()*&.,^;]\)/TQMimeSourceFactory\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWindowsMime\([ :<>"()*&.,^;]\)/TQWindowsMime\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWindowsMime\([ :<>"()*&.,^;]\)/TQWindowsMime\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMacMime\([ :<>"()*&.,^;]\)/TQMacMime\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMacMime\([ :<>"()*&.,^;]\)/TQMacMime\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMotifPlusStyle\([ :<>"()*&.,^;]\)/TQMotifPlusStyle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMotifPlusStyle\([ :<>"()*&.,^;]\)/TQMotifPlusStyle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMotifStyle\([ :<>"()*&.,^;]\)/TQMotifStyle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMotifStyle\([ :<>"()*&.,^;]\)/TQMotifStyle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMovie\([ :<>"()*&.,^;]\)/TQMovie\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMovie\([ :<>"()*&.,^;]\)/TQMovie\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMultiLineEdit\([ :<>"()*&.,^;]\)/TQMultiLineEdit\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMultiLineEdit\([ :<>"()*&.,^;]\)/TQMultiLineEdit\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMutex\([ :<>"()*&.,^;]\)/TQMutex\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMutex\([ :<>"()*&.,^;]\)/TQMutex\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QMutexLocker\([ :<>"()*&.,^;]\)/TQMutexLocker\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QMutexLocker\([ :<>"()*&.,^;]\)/TQMutexLocker\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QInternal\([ :<>"()*&.,^;]\)/TQInternal\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QInternal\([ :<>"()*&.,^;]\)/TQInternal\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QNetworkProtocolFactoryBase\([ :<>"()*&.,^;]\)/TQNetworkProtocolFactoryBase\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QNetworkProtocolFactoryBase\([ :<>"()*&.,^;]\)/TQNetworkProtocolFactoryBase\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QNetworkProtocolFactory\([ :<>"()*&.,^;]\)/TQNetworkProtocolFactory\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QNetworkProtocolFactory\([ :<>"()*&.,^;]\)/TQNetworkProtocolFactory\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QNetworkProtocol\([ :<>"()*&.,^;]\)/TQNetworkProtocol\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QNetworkProtocol\([ :<>"()*&.,^;]\)/TQNetworkProtocol\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QNetworkOperation\([ :<>"()*&.,^;]\)/TQNetworkOperation\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QNetworkOperation\([ :<>"()*&.,^;]\)/TQNetworkOperation\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QNPStream\([ :<>"()*&.,^;]\)/TQNPStream\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QNPStream\([ :<>"()*&.,^;]\)/TQNPStream\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QNPWidget\([ :<>"()*&.,^;]\)/TQNPWidget\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QNPWidget\([ :<>"()*&.,^;]\)/TQNPWidget\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QNPInstance\([ :<>"()*&.,^;]\)/TQNPInstance\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QNPInstance\([ :<>"()*&.,^;]\)/TQNPInstance\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QNPlugin\([ :<>"()*&.,^;]\)/TQNPlugin\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QNPlugin\([ :<>"()*&.,^;]\)/TQNPlugin\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QObjectCleanupHandler\([ :<>"()*&.,^;]\)/TQObjectCleanupHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QObjectCleanupHandler\([ :<>"()*&.,^;]\)/TQObjectCleanupHandler\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QObjectDictionary\([ :<>"()*&.,^;]\)/TQObjectDictionary\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QObjectDictionary\([ :<>"()*&.,^;]\)/TQObjectDictionary\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QObject\([ :<>"()*&.,^;]\)/TQObject\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QObject\([ :<>"()*&.,^;]\)/TQObject\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QObjectUserData\([ :<>"()*&.,^;]\)/TQObjectUserData\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QObjectUserData\([ :<>"()*&.,^;]\)/TQObjectUserData\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QObjectList\([ :<>"()*&.,^;]\)/TQObjectList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QObjectList\([ :<>"()*&.,^;]\)/TQObjectList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QObjectListIterator\([ :<>"()*&.,^;]\)/TQObjectListIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QObjectListIterator\([ :<>"()*&.,^;]\)/TQObjectListIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QObjectListIt\([ :<>"()*&.,^;]\)/TQObjectListIt\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QObjectListIt\([ :<>"()*&.,^;]\)/TQObjectListIt\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPaintDevice\([ :<>"()*&.,^;]\)/TQPaintDevice\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPaintDevice\([ :<>"()*&.,^;]\)/TQPaintDevice\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPaintDeviceMetrics\([ :<>"()*&.,^;]\)/TQPaintDeviceMetrics\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPaintDeviceMetrics\([ :<>"()*&.,^;]\)/TQPaintDeviceMetrics\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPainter\([ :<>"()*&.,^;]\)/TQPainter\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPainter\([ :<>"()*&.,^;]\)/TQPainter\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QColorGroup\([ :<>"()*&.,^;]\)/TQColorGroup\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QColorGroup\([ :<>"()*&.,^;]\)/TQColorGroup\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPair\([ :<>"()*&.,^;]\)/TQPair\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPair\([ :<>"()*&.,^;]\)/TQPair\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPalette\([ :<>"()*&.,^;]\)/TQPalette\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPalette\([ :<>"()*&.,^;]\)/TQPalette\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPen\([ :<>"()*&.,^;]\)/TQPen\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPen\([ :<>"()*&.,^;]\)/TQPen\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPicture\([ :<>"()*&.,^;]\)/TQPicture\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPicture\([ :<>"()*&.,^;]\)/TQPicture\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPixmapCache\([ :<>"()*&.,^;]\)/TQPixmapCache\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPixmapCache\([ :<>"()*&.,^;]\)/TQPixmapCache\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPixmap\([ :<>"()*&.,^;]\)/TQPixmap\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPixmap\([ :<>"()*&.,^;]\)/TQPixmap\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPlatinumStyle\([ :<>"()*&.,^;]\)/TQPlatinumStyle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPlatinumStyle\([ :<>"()*&.,^;]\)/TQPlatinumStyle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPNGImageWriter\([ :<>"()*&.,^;]\)/TQPNGImageWriter\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPNGImageWriter\([ :<>"()*&.,^;]\)/TQPNGImageWriter\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPNGImagePacker\([ :<>"()*&.,^;]\)/TQPNGImagePacker\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPNGImagePacker\([ :<>"()*&.,^;]\)/TQPNGImagePacker\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPointArray\([ :<>"()*&.,^;]\)/TQPointArray\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPointArray\([ :<>"()*&.,^;]\)/TQPointArray\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPoint\([ :<>"()*&.,^;]\)/TQPoint\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPoint\([ :<>"()*&.,^;]\)/TQPoint\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPolygonScanner\([ :<>"()*&.,^;]\)/TQPolygonScanner\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPolygonScanner\([ :<>"()*&.,^;]\)/TQPolygonScanner\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPopupMenu\([ :<>"()*&.,^;]\)/TQPopupMenu\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPopupMenu\([ :<>"()*&.,^;]\)/TQPopupMenu\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPrintDialog\([ :<>"()*&.,^;]\)/TQPrintDialog\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPrintDialog\([ :<>"()*&.,^;]\)/TQPrintDialog\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPrinter\([ :<>"()*&.,^;]\)/TQPrinter\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPrinter\([ :<>"()*&.,^;]\)/TQPrinter\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QProcess\([ :<>"()*&.,^;]\)/TQProcess\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QProcess\([ :<>"()*&.,^;]\)/TQProcess\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QProgressBar\([ :<>"()*&.,^;]\)/TQProgressBar\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QProgressBar\([ :<>"()*&.,^;]\)/TQProgressBar\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QProgressDialog\([ :<>"()*&.,^;]\)/TQProgressDialog\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QProgressDialog\([ :<>"()*&.,^;]\)/TQProgressDialog\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrCollection\([ :<>"()*&.,^;]\)/TQPtrCollection\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrCollection\([ :<>"()*&.,^;]\)/TQPtrCollection\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrDict\([ :<>"()*&.,^;]\)/TQPtrDict\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrDict\([ :<>"()*&.,^;]\)/TQPtrDict\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrDictIterator\([ :<>"()*&.,^;]\)/TQPtrDictIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrDictIterator\([ :<>"()*&.,^;]\)/TQPtrDictIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrListStdIterator\([ :<>"()*&.,^;]\)/TQPtrListStdIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrListStdIterator\([ :<>"()*&.,^;]\)/TQPtrListStdIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrList\([ :<>"()*&.,^;]\)/TQPtrList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrList\([ :<>"()*&.,^;]\)/TQPtrList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrListIterator\([ :<>"()*&.,^;]\)/TQPtrListIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrListIterator\([ :<>"()*&.,^;]\)/TQPtrListIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrQueue\([ :<>"()*&.,^;]\)/TQPtrQueue\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrQueue\([ :<>"()*&.,^;]\)/TQPtrQueue\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrStack\([ :<>"()*&.,^;]\)/TQPtrStack\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrStack\([ :<>"()*&.,^;]\)/TQPtrStack\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPtrVector\([ :<>"()*&.,^;]\)/TQPtrVector\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPtrVector\([ :<>"()*&.,^;]\)/TQPtrVector\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QPushButton\([ :<>"()*&.,^;]\)/TQPushButton\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QPushButton\([ :<>"()*&.,^;]\)/TQPushButton\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QRadioButton\([ :<>"()*&.,^;]\)/TQRadioButton\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QRadioButton\([ :<>"()*&.,^;]\)/TQRadioButton\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QRangeControl\([ :<>"()*&.,^;]\)/TQRangeControl\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QRangeControl\([ :<>"()*&.,^;]\)/TQRangeControl\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSpinWidget\([ :<>"()*&.,^;]\)/TQSpinWidget\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSpinWidget\([ :<>"()*&.,^;]\)/TQSpinWidget\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QRect\([ :<>"()*&.,^;]\)/TQRect\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QRect\([ :<>"()*&.,^;]\)/TQRect\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QRegExp\([ :<>"()*&.,^;]\)/TQRegExp\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QRegExp\([ :<>"()*&.,^;]\)/TQRegExp\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QRegion\([ :<>"()*&.,^;]\)/TQRegion\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QRegion\([ :<>"()*&.,^;]\)/TQRegion\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QHebrewCodec\([ :<>"()*&.,^;]\)/TQHebrewCodec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QHebrewCodec\([ :<>"()*&.,^;]\)/TQHebrewCodec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QScrollBar\([ :<>"()*&.,^;]\)/TQScrollBar\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QScrollBar\([ :<>"()*&.,^;]\)/TQScrollBar\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QScrollView\([ :<>"()*&.,^;]\)/TQScrollView\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QScrollView\([ :<>"()*&.,^;]\)/TQScrollView\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSemaphore\([ :<>"()*&.,^;]\)/TQSemaphore\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSemaphore\([ :<>"()*&.,^;]\)/TQSemaphore\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QServerSocket\([ :<>"()*&.,^;]\)/TQServerSocket\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QServerSocket\([ :<>"()*&.,^;]\)/TQServerSocket\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSettings\([ :<>"()*&.,^;]\)/TQSettings\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSettings\([ :<>"()*&.,^;]\)/TQSettings\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSGIStyle\([ :<>"()*&.,^;]\)/TQSGIStyle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSGIStyle\([ :<>"()*&.,^;]\)/TQSGIStyle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSignal\([ :<>"()*&.,^;]\)/TQSignal\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSignal\([ :<>"()*&.,^;]\)/TQSignal\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSignalMapper\([ :<>"()*&.,^;]\)/TQSignalMapper\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSignalMapper\([ :<>"()*&.,^;]\)/TQSignalMapper\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QConnectionList\([ :<>"()*&.,^;]\)/TQConnectionList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QConnectionList\([ :<>"()*&.,^;]\)/TQConnectionList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QConnectionListIt\([ :<>"()*&.,^;]\)/TQConnectionListIt\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QConnectionListIt\([ :<>"()*&.,^;]\)/TQConnectionListIt\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSignalVec\([ :<>"()*&.,^;]\)/TQSignalVec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSignalVec\([ :<>"()*&.,^;]\)/TQSignalVec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSimpleRichText\([ :<>"()*&.,^;]\)/TQSimpleRichText\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSimpleRichText\([ :<>"()*&.,^;]\)/TQSimpleRichText\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSizeGrip\([ :<>"()*&.,^;]\)/TQSizeGrip\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSizeGrip\([ :<>"()*&.,^;]\)/TQSizeGrip\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSize\([ :<>"()*&.,^;]\)/TQSize\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSize\([ :<>"()*&.,^;]\)/TQSize\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSizePolicy\([ :<>"()*&.,^;]\)/TQSizePolicy\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSizePolicy\([ :<>"()*&.,^;]\)/TQSizePolicy\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSjisCodec\([ :<>"()*&.,^;]\)/TQSjisCodec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSjisCodec\([ :<>"()*&.,^;]\)/TQSjisCodec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSlider\([ :<>"()*&.,^;]\)/TQSlider\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSlider\([ :<>"()*&.,^;]\)/TQSlider\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSocketDevice\([ :<>"()*&.,^;]\)/TQSocketDevice\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSocketDevice\([ :<>"()*&.,^;]\)/TQSocketDevice\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSocket\([ :<>"()*&.,^;]\)/TQSocket\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSocket\([ :<>"()*&.,^;]\)/TQSocket\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSocketNotifier\([ :<>"()*&.,^;]\)/TQSocketNotifier\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSocketNotifier\([ :<>"()*&.,^;]\)/TQSocketNotifier\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSound\([ :<>"()*&.,^;]\)/TQSound\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSound\([ :<>"()*&.,^;]\)/TQSound\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSpinBox\([ :<>"()*&.,^;]\)/TQSpinBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSpinBox\([ :<>"()*&.,^;]\)/TQSpinBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSplashScreen\([ :<>"()*&.,^;]\)/TQSplashScreen\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSplashScreen\([ :<>"()*&.,^;]\)/TQSplashScreen\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSplitter\([ :<>"()*&.,^;]\)/TQSplitter\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSplitter\([ :<>"()*&.,^;]\)/TQSplitter\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlCursor\([ :<>"()*&.,^;]\)/TQSqlCursor\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlCursor\([ :<>"()*&.,^;]\)/TQSqlCursor\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlDatabase\([ :<>"()*&.,^;]\)/TQSqlDatabase\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlDatabase\([ :<>"()*&.,^;]\)/TQSqlDatabase\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlDriver\([ :<>"()*&.,^;]\)/TQSqlDriver\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlDriver\([ :<>"()*&.,^;]\)/TQSqlDriver\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlDriverPlugin\([ :<>"()*&.,^;]\)/TQSqlDriverPlugin\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlDriverPlugin\([ :<>"()*&.,^;]\)/TQSqlDriverPlugin\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlEditorFactory\([ :<>"()*&.,^;]\)/TQSqlEditorFactory\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlEditorFactory\([ :<>"()*&.,^;]\)/TQSqlEditorFactory\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlError\([ :<>"()*&.,^;]\)/TQSqlError\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlError\([ :<>"()*&.,^;]\)/TQSqlError\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlFieldPrivate\([ :<>"()*&.,^;]\)/TQSqlFieldPrivate\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlFieldPrivate\([ :<>"()*&.,^;]\)/TQSqlFieldPrivate\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlField\([ :<>"()*&.,^;]\)/TQSqlField\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlField\([ :<>"()*&.,^;]\)/TQSqlField\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlFieldInfo\([ :<>"()*&.,^;]\)/TQSqlFieldInfo\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlFieldInfo\([ :<>"()*&.,^;]\)/TQSqlFieldInfo\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlForm\([ :<>"()*&.,^;]\)/TQSqlForm\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlForm\([ :<>"()*&.,^;]\)/TQSqlForm\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSql\([ :<>"()*&.,^;]\)/TQSql\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSql\([ :<>"()*&.,^;]\)/TQSql\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlIndex\([ :<>"()*&.,^;]\)/TQSqlIndex\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlIndex\([ :<>"()*&.,^;]\)/TQSqlIndex\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlPropertyMap\([ :<>"()*&.,^;]\)/TQSqlPropertyMap\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlPropertyMap\([ :<>"()*&.,^;]\)/TQSqlPropertyMap\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlQuery\([ :<>"()*&.,^;]\)/TQSqlQuery\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlQuery\([ :<>"()*&.,^;]\)/TQSqlQuery\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlResultShared\([ :<>"()*&.,^;]\)/TQSqlResultShared\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlResultShared\([ :<>"()*&.,^;]\)/TQSqlResultShared\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlRecordShared\([ :<>"()*&.,^;]\)/TQSqlRecordShared\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlRecordShared\([ :<>"()*&.,^;]\)/TQSqlRecordShared\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlRecord\([ :<>"()*&.,^;]\)/TQSqlRecord\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlRecord\([ :<>"()*&.,^;]\)/TQSqlRecord\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlRecordInfo\([ :<>"()*&.,^;]\)/TQSqlRecordInfo\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlRecordInfo\([ :<>"()*&.,^;]\)/TQSqlRecordInfo\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlResult\([ :<>"()*&.,^;]\)/TQSqlResult\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlResult\([ :<>"()*&.,^;]\)/TQSqlResult\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlSelectCursorPrivate\([ :<>"()*&.,^;]\)/TQSqlSelectCursorPrivate\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlSelectCursorPrivate\([ :<>"()*&.,^;]\)/TQSqlSelectCursorPrivate\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSqlSelectCursor\([ :<>"()*&.,^;]\)/TQSqlSelectCursor\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSqlSelectCursor\([ :<>"()*&.,^;]\)/TQSqlSelectCursor\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStatusBar\([ :<>"()*&.,^;]\)/TQStatusBar\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStatusBar\([ :<>"()*&.,^;]\)/TQStatusBar\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QChar\([ :<>"()*&.,^;]\)/TQChar\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QChar\([ :<>"()*&.,^;]\)/TQChar\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QString\([ :<>"()*&.,^;]\)/TQString\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QString\([ :<>"()*&.,^;]\)/TQString\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCharRef\([ :<>"()*&.,^;]\)/TQCharRef\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCharRef\([ :<>"()*&.,^;]\)/TQCharRef\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QConstString\([ :<>"()*&.,^;]\)/TQConstString\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QConstString\([ :<>"()*&.,^;]\)/TQConstString\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QChar\([ :<>"()*&.,^;]\)/TQChar\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QChar\([ :<>"()*&.,^;]\)/TQChar\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QString\([ :<>"()*&.,^;]\)/TQString\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QString\([ :<>"()*&.,^;]\)/TQString\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCharRef\([ :<>"()*&.,^;]\)/TQCharRef\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCharRef\([ :<>"()*&.,^;]\)/TQCharRef\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QConstString\([ :<>"()*&.,^;]\)/TQConstString\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QConstString\([ :<>"()*&.,^;]\)/TQConstString\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStringList\([ :<>"()*&.,^;]\)/TQStringList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStringList\([ :<>"()*&.,^;]\)/TQStringList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStrListIterator\([ :<>"()*&.,^;]\)/TQStrListIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStrListIterator\([ :<>"()*&.,^;]\)/TQStrListIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStrIList\([ :<>"()*&.,^;]\)/TQStrIList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStrIList\([ :<>"()*&.,^;]\)/TQStrIList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStrVec\([ :<>"()*&.,^;]\)/TQStrVec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStrVec\([ :<>"()*&.,^;]\)/TQStrVec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStrIVec\([ :<>"()*&.,^;]\)/TQStrIVec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStrIVec\([ :<>"()*&.,^;]\)/TQStrIVec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStyleFactory\([ :<>"()*&.,^;]\)/TQStyleFactory\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStyleFactory\([ :<>"()*&.,^;]\)/TQStyleFactory\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStyleOption\([ :<>"()*&.,^;]\)/TQStyleOption\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStyleOption\([ :<>"()*&.,^;]\)/TQStyleOption\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStyle\([ :<>"()*&.,^;]\)/TQStyle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStyle\([ :<>"()*&.,^;]\)/TQStyle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStylePlugin\([ :<>"()*&.,^;]\)/TQStylePlugin\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStylePlugin\([ :<>"()*&.,^;]\)/TQStylePlugin\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStyleSheetItem\([ :<>"()*&.,^;]\)/TQStyleSheetItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStyleSheetItem\([ :<>"()*&.,^;]\)/TQStyleSheetItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QStyleSheet\([ :<>"()*&.,^;]\)/TQStyleSheet\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QStyleSheet\([ :<>"()*&.,^;]\)/TQStyleSheet\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QSyntaxHighlighter\([ :<>"()*&.,^;]\)/TQSyntaxHighlighter\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QSyntaxHighlighter\([ :<>"()*&.,^;]\)/TQSyntaxHighlighter\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTab\([ :<>"()*&.,^;]\)/TQTab\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTab\([ :<>"()*&.,^;]\)/TQTab\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTabBar\([ :<>"()*&.,^;]\)/TQTabBar\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTabBar\([ :<>"()*&.,^;]\)/TQTabBar\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTabDialog\([ :<>"()*&.,^;]\)/TQTabDialog\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTabDialog\([ :<>"()*&.,^;]\)/TQTabDialog\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTableSelection\([ :<>"()*&.,^;]\)/TQTableSelection\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTableSelection\([ :<>"()*&.,^;]\)/TQTableSelection\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTableItem\([ :<>"()*&.,^;]\)/TQTableItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTableItem\([ :<>"()*&.,^;]\)/TQTableItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QComboTableItem\([ :<>"()*&.,^;]\)/TQComboTableItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QComboTableItem\([ :<>"()*&.,^;]\)/TQComboTableItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QCheckTableItem\([ :<>"()*&.,^;]\)/TQCheckTableItem\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QCheckTableItem\([ :<>"()*&.,^;]\)/TQCheckTableItem\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTable\([ :<>"()*&.,^;]\)/TQTable\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTable\([ :<>"()*&.,^;]\)/TQTable\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTabWidget\([ :<>"()*&.,^;]\)/TQTabWidget\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTabWidget\([ :<>"()*&.,^;]\)/TQTabWidget\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextBrowser\([ :<>"()*&.,^;]\)/TQTextBrowser\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextBrowser\([ :<>"()*&.,^;]\)/TQTextBrowser\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextCodecFactory\([ :<>"()*&.,^;]\)/TQTextCodecFactory\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextCodecFactory\([ :<>"()*&.,^;]\)/TQTextCodecFactory\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextEncoder\([ :<>"()*&.,^;]\)/TQTextEncoder\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextEncoder\([ :<>"()*&.,^;]\)/TQTextEncoder\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextDecoder\([ :<>"()*&.,^;]\)/TQTextDecoder\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextDecoder\([ :<>"()*&.,^;]\)/TQTextDecoder\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextCodec\([ :<>"()*&.,^;]\)/TQTextCodec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextCodec\([ :<>"()*&.,^;]\)/TQTextCodec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextCodecPlugin\([ :<>"()*&.,^;]\)/TQTextCodecPlugin\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextCodecPlugin\([ :<>"()*&.,^;]\)/TQTextCodecPlugin\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextEdit\([ :<>"()*&.,^;]\)/TQTextEdit\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextEdit\([ :<>"()*&.,^;]\)/TQTextEdit\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextStream\([ :<>"()*&.,^;]\)/TQTextStream\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextStream\([ :<>"()*&.,^;]\)/TQTextStream\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextIStream\([ :<>"()*&.,^;]\)/TQTextIStream\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextIStream\([ :<>"()*&.,^;]\)/TQTextIStream\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextOStream\([ :<>"()*&.,^;]\)/TQTextOStream\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextOStream\([ :<>"()*&.,^;]\)/TQTextOStream\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTSManip\([ :<>"()*&.,^;]\)/TQTSManip\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTSManip\([ :<>"()*&.,^;]\)/TQTSManip\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextView\([ :<>"()*&.,^;]\)/TQTextView\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextView\([ :<>"()*&.,^;]\)/TQTextView\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QThread\([ :<>"()*&.,^;]\)/TQThread\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QThread\([ :<>"()*&.,^;]\)/TQThread\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QThreadStorageData\([ :<>"()*&.,^;]\)/TQThreadStorageData\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QThreadStorageData\([ :<>"()*&.,^;]\)/TQThreadStorageData\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QThreadStorage\([ :<>"()*&.,^;]\)/TQThreadStorage\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QThreadStorage\([ :<>"()*&.,^;]\)/TQThreadStorage\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTimer\([ :<>"()*&.,^;]\)/TQTimer\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTimer\([ :<>"()*&.,^;]\)/TQTimer\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTimer\([ :<>"()*&.,^;]\)/TQTimer\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTimer\([ :<>"()*&.,^;]\)/TQTimer\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTextOStreamIterator\([ :<>"()*&.,^;]\)/TQTextOStreamIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTextOStreamIterator\([ :<>"()*&.,^;]\)/TQTextOStreamIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QBackInsertIterator\([ :<>"()*&.,^;]\)/TQBackInsertIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QBackInsertIterator\([ :<>"()*&.,^;]\)/TQBackInsertIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QToolBar\([ :<>"()*&.,^;]\)/TQToolBar\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QToolBar\([ :<>"()*&.,^;]\)/TQToolBar\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QToolBox\([ :<>"()*&.,^;]\)/TQToolBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QToolBox\([ :<>"()*&.,^;]\)/TQToolBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QToolButton\([ :<>"()*&.,^;]\)/TQToolButton\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QToolButton\([ :<>"()*&.,^;]\)/TQToolButton\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QToolTipGroup\([ :<>"()*&.,^;]\)/TQToolTipGroup\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QToolTipGroup\([ :<>"()*&.,^;]\)/TQToolTipGroup\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QToolTip\([ :<>"()*&.,^;]\)/TQToolTip\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QToolTip\([ :<>"()*&.,^;]\)/TQToolTip\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTranslator\([ :<>"()*&.,^;]\)/TQTranslator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTranslator\([ :<>"()*&.,^;]\)/TQTranslator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTranslatorMessage\([ :<>"()*&.,^;]\)/TQTranslatorMessage\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTranslatorMessage\([ :<>"()*&.,^;]\)/TQTranslatorMessage\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QTsciiCodec\([ :<>"()*&.,^;]\)/TQTsciiCodec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QTsciiCodec\([ :<>"()*&.,^;]\)/TQTsciiCodec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QUrl\([ :<>"()*&.,^;]\)/TQUrl\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QUrl\([ :<>"()*&.,^;]\)/TQUrl\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QUrlInfo\([ :<>"()*&.,^;]\)/TQUrlInfo\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QUrlInfo\([ :<>"()*&.,^;]\)/TQUrlInfo\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QUrlOperator\([ :<>"()*&.,^;]\)/TQUrlOperator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QUrlOperator\([ :<>"()*&.,^;]\)/TQUrlOperator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QUtf8Codec\([ :<>"()*&.,^;]\)/TQUtf8Codec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QUtf8Codec\([ :<>"()*&.,^;]\)/TQUtf8Codec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QUtf16Codec\([ :<>"()*&.,^;]\)/TQUtf16Codec\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QUtf16Codec\([ :<>"()*&.,^;]\)/TQUtf16Codec\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValidator\([ :<>"()*&.,^;]\)/TQValidator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValidator\([ :<>"()*&.,^;]\)/TQValidator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QIntValidator\([ :<>"()*&.,^;]\)/TQIntValidator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QIntValidator\([ :<>"()*&.,^;]\)/TQIntValidator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QDoubleValidator\([ :<>"()*&.,^;]\)/TQDoubleValidator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QDoubleValidator\([ :<>"()*&.,^;]\)/TQDoubleValidator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QRegExpValidator\([ :<>"()*&.,^;]\)/TQRegExpValidator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QRegExpValidator\([ :<>"()*&.,^;]\)/TQRegExpValidator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValueListNode\([ :<>"()*&.,^;]\)/TQValueListNode\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValueListNode\([ :<>"()*&.,^;]\)/TQValueListNode\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValueListIterator\([ :<>"()*&.,^;]\)/TQValueListIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValueListIterator\([ :<>"()*&.,^;]\)/TQValueListIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValueListConstIterator\([ :<>"()*&.,^;]\)/TQValueListConstIterator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValueListConstIterator\([ :<>"()*&.,^;]\)/TQValueListConstIterator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValueListPrivate\([ :<>"()*&.,^;]\)/TQValueListPrivate\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValueListPrivate\([ :<>"()*&.,^;]\)/TQValueListPrivate\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValueList\([ :<>"()*&.,^;]\)/TQValueList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValueList\([ :<>"()*&.,^;]\)/TQValueList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValueStack\([ :<>"()*&.,^;]\)/TQValueStack\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValueStack\([ :<>"()*&.,^;]\)/TQValueStack\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValueVectorPrivate\([ :<>"()*&.,^;]\)/TQValueVectorPrivate\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValueVectorPrivate\([ :<>"()*&.,^;]\)/TQValueVectorPrivate\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QValueVector\([ :<>"()*&.,^;]\)/TQValueVector\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QValueVector\([ :<>"()*&.,^;]\)/TQValueVector\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QVariant\([ :<>"()*&.,^;]\)/TQVariant\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QVariant\([ :<>"()*&.,^;]\)/TQVariant\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QVBox\([ :<>"()*&.,^;]\)/TQVBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QVBox\([ :<>"()*&.,^;]\)/TQVBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QVButtonGroup\([ :<>"()*&.,^;]\)/TQVButtonGroup\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QVButtonGroup\([ :<>"()*&.,^;]\)/TQVButtonGroup\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QVGroupBox\([ :<>"()*&.,^;]\)/TQVGroupBox\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QVGroupBox\([ :<>"()*&.,^;]\)/TQVGroupBox\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWaitCondition\([ :<>"()*&.,^;]\)/TQWaitCondition\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWaitCondition\([ :<>"()*&.,^;]\)/TQWaitCondition\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWhatsThis\([ :<>"()*&.,^;]\)/TQWhatsThis\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWhatsThis\([ :<>"()*&.,^;]\)/TQWhatsThis\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidgetFactory\([ :<>"()*&.,^;]\)/TQWidgetFactory\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidgetFactory\([ :<>"()*&.,^;]\)/TQWidgetFactory\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidget\([ :<>"()*&.,^;]\)/TQWidget\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidget\([ :<>"()*&.,^;]\)/TQWidget\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidgetIntDict\([ :<>"()*&.,^;]\)/TQWidgetIntDict\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidgetIntDict\([ :<>"()*&.,^;]\)/TQWidgetIntDict\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidgetIntDictIt\([ :<>"()*&.,^;]\)/TQWidgetIntDictIt\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidgetIntDictIt\([ :<>"()*&.,^;]\)/TQWidgetIntDictIt\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidgetList\([ :<>"()*&.,^;]\)/TQWidgetList\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidgetList\([ :<>"()*&.,^;]\)/TQWidgetList\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidgetListIt\([ :<>"()*&.,^;]\)/TQWidgetListIt\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidgetListIt\([ :<>"()*&.,^;]\)/TQWidgetListIt\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidgetPlugin\([ :<>"()*&.,^;]\)/TQWidgetPlugin\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidgetPlugin\([ :<>"()*&.,^;]\)/TQWidgetPlugin\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidgetContainerPlugin\([ :<>"()*&.,^;]\)/TQWidgetContainerPlugin\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidgetContainerPlugin\([ :<>"()*&.,^;]\)/TQWidgetContainerPlugin\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWidgetStack\([ :<>"()*&.,^;]\)/TQWidgetStack\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWidgetStack\([ :<>"()*&.,^;]\)/TQWidgetStack\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWindowsStyle\([ :<>"()*&.,^;]\)/TQWindowsStyle\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWindowsStyle\([ :<>"()*&.,^;]\)/TQWindowsStyle\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWizard\([ :<>"()*&.,^;]\)/TQWizard\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWizard\([ :<>"()*&.,^;]\)/TQWizard\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWMatrix\([ :<>"()*&.,^;]\)/TQWMatrix\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWMatrix\([ :<>"()*&.,^;]\)/TQWMatrix\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QWorkspace\([ :<>"()*&.,^;]\)/TQWorkspace\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QWorkspace\([ :<>"()*&.,^;]\)/TQWorkspace\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlNamespaceSupport\([ :<>"()*&.,^;]\)/TQXmlNamespaceSupport\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlNamespaceSupport\([ :<>"()*&.,^;]\)/TQXmlNamespaceSupport\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlAttributes\([ :<>"()*&.,^;]\)/TQXmlAttributes\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlAttributes\([ :<>"()*&.,^;]\)/TQXmlAttributes\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlInputSource\([ :<>"()*&.,^;]\)/TQXmlInputSource\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlInputSource\([ :<>"()*&.,^;]\)/TQXmlInputSource\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlParseException\([ :<>"()*&.,^;]\)/TQXmlParseException\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlParseException\([ :<>"()*&.,^;]\)/TQXmlParseException\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlReader\([ :<>"()*&.,^;]\)/TQXmlReader\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlReader\([ :<>"()*&.,^;]\)/TQXmlReader\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlSimpleReader\([ :<>"()*&.,^;]\)/TQXmlSimpleReader\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlSimpleReader\([ :<>"()*&.,^;]\)/TQXmlSimpleReader\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlLocator\([ :<>"()*&.,^;]\)/TQXmlLocator\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlLocator\([ :<>"()*&.,^;]\)/TQXmlLocator\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlContentHandler\([ :<>"()*&.,^;]\)/TQXmlContentHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlContentHandler\([ :<>"()*&.,^;]\)/TQXmlContentHandler\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlErrorHandler\([ :<>"()*&.,^;]\)/TQXmlErrorHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlErrorHandler\([ :<>"()*&.,^;]\)/TQXmlErrorHandler\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlDTDHandler\([ :<>"()*&.,^;]\)/TQXmlDTDHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlDTDHandler\([ :<>"()*&.,^;]\)/TQXmlDTDHandler\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlEntityResolver\([ :<>"()*&.,^;]\)/TQXmlEntityResolver\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlEntityResolver\([ :<>"()*&.,^;]\)/TQXmlEntityResolver\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlLexicalHandler\([ :<>"()*&.,^;]\)/TQXmlLexicalHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlLexicalHandler\([ :<>"()*&.,^;]\)/TQXmlLexicalHandler\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlDeclHandler\([ :<>"()*&.,^;]\)/TQXmlDeclHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlDeclHandler\([ :<>"()*&.,^;]\)/TQXmlDeclHandler\1/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/QXmlDefaultHandler\([ :<>"()*&.,^;]\)/TQXmlDefaultHandler\1/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/QXmlDefaultHandler\([ :<>"()*&.,^;]\)/TQXmlDefaultHandler\1/g' {} \;
-
-# find ./ -type f -iname "*.c*" -exec sed -i 's/Qt/TQt/g' {} \;
-# find ./ -type f -iname "*.h*" -exec sed -i 's/Qt/TQt/g' {} \;
-
-find ./ -type f -iname "*.h*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/TTQ/TQ/g' {} \;
-
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^_]\)METHOD\([( ]\)/\1TQ_METHOD\2/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^_]\)METHOD\([( ]\)/\1TQ_METHOD\2/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^_]\)SLOT\([( ]\)/\1TQ_SLOT\2/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^_]\)SLOT\([( ]\)/\1TQ_SLOT\2/g' {} \;
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([^_]\)SIGNAL\([( ]\)/\1TQ_SIGNAL\2/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([^_]\)SIGNAL\([( ]\)/\1TQ_SIGNAL\2/g' {} \;
-
-find ./ -type f -iname "*.h*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-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' {} \;
-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/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' {} \;
-
-
-# Back out some common mistakes
-find ./ -type f -iname "*.c*" -exec sed -i 's/\([_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]\)TQ/\1Q/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\([_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]\)TQ/\1Q/g' {} \;
-# find ./ -type f -iname "*.c*" -exec sed -i 's/ TQt / Qt /g' {} \;
-# find ./ -type f -iname "*.h*" -exec sed -i 's/ TQt / Qt /g' {} \;
-
-# Back out anything that was originally in a string
-#find ./ -type f -iname "*.h*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.h*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.h*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.h*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.h*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.h*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.h*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.h*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.c*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.c*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.c*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.c*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.c*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.c*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.c*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-#find ./ -type f -iname "*.c*" -exec sed -i 's/\"\(.*\)TQ\(.*\)\"/\"\1Q\2\"/g' {} \;
-
-
diff --git a/qtinterface/convert_qt_tqt3 b/qtinterface/convert_qt_tqt3
deleted file mode 100755
index 06e85da..0000000
--- a/qtinterface/convert_qt_tqt3
+++ /dev/null
@@ -1,987 +0,0 @@
-#!/bin/bash
-
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAccel/TQAccel/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAccel/TQAccel/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAccessible/TQAccessible/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAccessible/TQAccessible/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAccessibleObject/TQAccessibleObject/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAccessibleObject/TQAccessibleObject/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAction/TQAction/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAction/TQAction/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QActionGroup/TQActionGroup/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QActionGroup/TQActionGroup/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QApplication/TQApplication/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QApplication/TQApplication/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAsciiCache/TQAsciiCache/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAsciiCache/TQAsciiCache/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAsciiCacheIterator/TQAsciiCacheIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAsciiCacheIterator/TQAsciiCacheIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAsciiDict/TQAsciiDict/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAsciiDict/TQAsciiDict/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAsciiDictIterator/TQAsciiDictIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAsciiDictIterator/TQAsciiDictIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QImageConsumer/TQImageConsumer/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QImageConsumer/TQImageConsumer/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QImageFormat/TQImageFormat/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QImageFormat/TQImageFormat/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QImageFormatType/TQImageFormatType/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QImageFormatType/TQImageFormatType/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QImageDecoder/TQImageDecoder/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QImageDecoder/TQImageDecoder/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAsyncIO/TQAsyncIO/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAsyncIO/TQAsyncIO/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataSink/TQDataSink/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataSink/TQDataSink/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataSource/TQDataSource/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataSource/TQDataSource/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIODeviceSource/TQIODeviceSource/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIODeviceSource/TQIODeviceSource/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataPump/TQDataPump/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataPump/TQDataPump/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBig5Codec/TQBig5Codec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBig5Codec/TQBig5Codec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBig5hkscsCodec/TQBig5hkscsCodec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBig5hkscsCodec/TQBig5hkscsCodec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBitVal/TQBitVal/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBitVal/TQBitVal/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBitArray/TQBitArray/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBitArray/TQBitArray/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBitmap/TQBitmap/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBitmap/TQBitmap/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBrush/TQBrush/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBrush/TQBrush/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBuffer/TQBuffer/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBuffer/TQBuffer/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QButtonGroup/TQButtonGroup/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QButtonGroup/TQButtonGroup/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QButton/TQButton/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QButton/TQButton/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCache/TQCache/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCache/TQCache/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCacheIterator/TQCacheIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCacheIterator/TQCacheIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasChunk/TQCanvasChunk/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasChunk/TQCanvasChunk/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasItemList/TQCanvasItemList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasItemList/TQCanvasItemList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasItemExtra/TQCanvasItemExtra/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasItemExtra/TQCanvasItemExtra/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasItem/TQCanvasItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasItem/TQCanvasItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasData/TQCanvasData/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasData/TQCanvasData/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvas/TQCanvas/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvas/TQCanvas/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasViewData/TQCanvasViewData/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasViewData/TQCanvasViewData/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasView/TQCanvasView/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasView/TQCanvasView/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasPixmap/TQCanvasPixmap/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasPixmap/TQCanvasPixmap/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasPixmapArray/TQCanvasPixmapArray/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasPixmapArray/TQCanvasPixmapArray/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasSprite/TQCanvasSprite/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasSprite/TQCanvasSprite/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPolygonalProcessor/TQPolygonalProcessor/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPolygonalProcessor/TQPolygonalProcessor/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasPolygonalItem/TQCanvasPolygonalItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasPolygonalItem/TQCanvasPolygonalItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasRectangle/TQCanvasRectangle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasRectangle/TQCanvasRectangle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasPolygon/TQCanvasPolygon/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasPolygon/TQCanvasPolygon/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasSpline/TQCanvasSpline/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasSpline/TQCanvasSpline/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasLine/TQCanvasLine/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasLine/TQCanvasLine/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasEllipse/TQCanvasEllipse/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasEllipse/TQCanvasEllipse/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasTextExtra/TQCanvasTextExtra/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasTextExtra/TQCanvasTextExtra/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCanvasText/TQCanvasText/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCanvasText/TQCanvasText/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCDEStyle/TQCDEStyle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCDEStyle/TQCDEStyle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCheckBox/TQCheckBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCheckBox/TQCheckBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCleanupHandler/TQCleanupHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCleanupHandler/TQCleanupHandler/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSingleCleanupHandler/TQSingleCleanupHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSingleCleanupHandler/TQSingleCleanupHandler/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSharedCleanupHandler/TQSharedCleanupHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSharedCleanupHandler/TQSharedCleanupHandler/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QColor/TQColor/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QColor/TQColor/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStrList/TQStrList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStrList/TQStrList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStringList/TQStringList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStringList/TQStringList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLineEdit/TQLineEdit/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLineEdit/TQLineEdit/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValidator/TQValidator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValidator/TQValidator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QListBox/TQListBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QListBox/TQListBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QComboBoxData/TQComboBoxData/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QComboBoxData/TQComboBoxData/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWheelEvent/TQWheelEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWheelEvent/TQWheelEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QComboBox/TQComboBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QComboBox/TQComboBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCommonStyle/TQCommonStyle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCommonStyle/TQCommonStyle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCompactStyle/TQCompactStyle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCompactStyle/TQCompactStyle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QConnection/TQConnection/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QConnection/TQConnection/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCString/TQCString/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCString/TQCString/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QByteArray/TQByteArray/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QByteArray/TQByteArray/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCString/TQCString/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCString/TQCString/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCursor/TQCursor/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCursor/TQCursor/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlForm/TQSqlForm/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlForm/TQSqlForm/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataBrowserPrivate/TQDataBrowserPrivate/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataBrowserPrivate/TQDataBrowserPrivate/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataBrowser/TQDataBrowser/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataBrowser/TQDataBrowser/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataStream/TQDataStream/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataStream/TQDataStream/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataStream/TQDataStream/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataStream/TQDataStream/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPainter/TQPainter/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPainter/TQPainter/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlField/TQSqlField/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlField/TQSqlField/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlPropertyMap/TQSqlPropertyMap/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlPropertyMap/TQSqlPropertyMap/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataTablePrivate/TQDataTablePrivate/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataTablePrivate/TQDataTablePrivate/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataTable/TQDataTable/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataTable/TQDataTable/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDataView/TQDataView/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDataView/TQDataView/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDateTimeEditBase/TQDateTimeEditBase/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDateTimeEditBase/TQDateTimeEditBase/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDate/TQDate/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDate/TQDate/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTime/TQTime/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTime/TQTime/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDateTime/TQDateTime/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDateTime/TQDateTime/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDeepCopy/TQDeepCopy/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDeepCopy/TQDeepCopy/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDesktopWidget/TQDesktopWidget/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDesktopWidget/TQDesktopWidget/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDial/TQDial/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDial/TQDial/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDialog/TQDialog/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDialog/TQDialog/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDict/TQDict/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDict/TQDict/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDictIterator/TQDictIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDictIterator/TQDictIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDir/TQDir/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDir/TQDir/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDns/TQDns/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDns/TQDns/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDnsSocket/TQDnsSocket/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDnsSocket/TQDnsSocket/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDockArea/TQDockArea/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDockArea/TQDockArea/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDockAreaLayout/TQDockAreaLayout/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDockAreaLayout/TQDockAreaLayout/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDockWindow/TQDockWindow/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDockWindow/TQDockWindow/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomImplementation/TQDomImplementation/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomImplementation/TQDomImplementation/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomNode/TQDomNode/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomNode/TQDomNode/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomNodeList/TQDomNodeList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomNodeList/TQDomNodeList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomDocumentType/TQDomDocumentType/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomDocumentType/TQDomDocumentType/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomDocument/TQDomDocument/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomDocument/TQDomDocument/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomNamedNodeMap/TQDomNamedNodeMap/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomNamedNodeMap/TQDomNamedNodeMap/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomDocumentFragment/TQDomDocumentFragment/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomDocumentFragment/TQDomDocumentFragment/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomCharacterData/TQDomCharacterData/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomCharacterData/TQDomCharacterData/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomAttr/TQDomAttr/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomAttr/TQDomAttr/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomElement/TQDomElement/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomElement/TQDomElement/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomText/TQDomText/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomText/TQDomText/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomComment/TQDomComment/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomComment/TQDomComment/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomCDATASection/TQDomCDATASection/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomCDATASection/TQDomCDATASection/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomNotation/TQDomNotation/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomNotation/TQDomNotation/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomEntity/TQDomEntity/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomEntity/TQDomEntity/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomEntityReference/TQDomEntityReference/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomEntityReference/TQDomEntityReference/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDomProcessingInstruction/TQDomProcessingInstruction/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDomProcessingInstruction/TQDomProcessingInstruction/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDragObject/TQDragObject/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDragObject/TQDragObject/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStoredDrag/TQStoredDrag/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStoredDrag/TQStoredDrag/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextDrag/TQTextDrag/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextDrag/TQTextDrag/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QImageDrag/TQImageDrag/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QImageDrag/TQImageDrag/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QUriDrag/TQUriDrag/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QUriDrag/TQUriDrag/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QColorDrag/TQColorDrag/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QColorDrag/TQColorDrag/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDropSite/TQDropSite/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDropSite/TQDropSite/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QEditorFactory/TQEditorFactory/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QEditorFactory/TQEditorFactory/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QErrorMessage/TQErrorMessage/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QErrorMessage/TQErrorMessage/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QEucJpCodec/TQEucJpCodec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QEucJpCodec/TQEucJpCodec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QEucKrCodec/TQEucKrCodec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QEucKrCodec/TQEucKrCodec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QEvent/TQEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QEvent/TQEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTimerEvent/TQTimerEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTimerEvent/TQTimerEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMouseEvent/TQMouseEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMouseEvent/TQMouseEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWheelEvent/TQWheelEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWheelEvent/TQWheelEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTabletEvent/TQTabletEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTabletEvent/TQTabletEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QKeyEvent/TQKeyEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QKeyEvent/TQKeyEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFocusEvent/TQFocusEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFocusEvent/TQFocusEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPaintEvent/TQPaintEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPaintEvent/TQPaintEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMoveEvent/TQMoveEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMoveEvent/TQMoveEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QResizeEvent/TQResizeEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QResizeEvent/TQResizeEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCloseEvent/TQCloseEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCloseEvent/TQCloseEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIconDragEvent/TQIconDragEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIconDragEvent/TQIconDragEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QShowEvent/TQShowEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QShowEvent/TQShowEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHideEvent/TQHideEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHideEvent/TQHideEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QContextMenuEvent/TQContextMenuEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QContextMenuEvent/TQContextMenuEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIMEvent/TQIMEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIMEvent/TQIMEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIMComposeEvent/TQIMComposeEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIMComposeEvent/TQIMComposeEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDropEvent/TQDropEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDropEvent/TQDropEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDragMoveEvent/TQDragMoveEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDragMoveEvent/TQDragMoveEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDragEnterEvent/TQDragEnterEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDragEnterEvent/TQDragEnterEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDragResponseEvent/TQDragResponseEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDragResponseEvent/TQDragResponseEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDragLeaveEvent/TQDragLeaveEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDragLeaveEvent/TQDragLeaveEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QChildEvent/TQChildEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QChildEvent/TQChildEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCustomEvent/TQCustomEvent/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCustomEvent/TQCustomEvent/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QEventLoop/TQEventLoop/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QEventLoop/TQEventLoop/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFileIconProvider/TQFileIconProvider/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFileIconProvider/TQFileIconProvider/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFilePreview/TQFilePreview/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFilePreview/TQFilePreview/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFileDialog/TQFileDialog/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFileDialog/TQFileDialog/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFile/TQFile/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFile/TQFile/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFile/TQFile/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFile/TQFile/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFileInfo/TQFileInfo/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFileInfo/TQFileInfo/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFocusData/TQFocusData/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFocusData/TQFocusData/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFontDatabase/TQFontDatabase/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFontDatabase/TQFontDatabase/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFont/TQFont/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFont/TQFont/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFontInfo/TQFontInfo/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFontInfo/TQFontInfo/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFontMetrics/TQFontMetrics/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFontMetrics/TQFontMetrics/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFrame/TQFrame/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFrame/TQFrame/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QFtp/TQFtp/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QFtp/TQFtp/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGArray/TQGArray/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGArray/TQGArray/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGb18030Codec/TQGb18030Codec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGb18030Codec/TQGb18030Codec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGbkCodec/TQGbkCodec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGbkCodec/TQGbkCodec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGb2312Codec/TQGb2312Codec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGb2312Codec/TQGb2312Codec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGCache/TQGCache/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGCache/TQGCache/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGCacheIterator/TQGCacheIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGCacheIterator/TQGCacheIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBaseBucket/TQBaseBucket/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBaseBucket/TQBaseBucket/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStringBucket/TQStringBucket/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStringBucket/TQStringBucket/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QAsciiBucket/TQAsciiBucket/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QAsciiBucket/TQAsciiBucket/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIntBucket/TQIntBucket/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIntBucket/TQIntBucket/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrBucket/TQPtrBucket/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrBucket/TQPtrBucket/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGDict/TQGDict/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGDict/TQGDict/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGDictIterator/TQGDictIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGDictIterator/TQGDictIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGLColormap/TQGLColormap/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGLColormap/TQGLColormap/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGL/TQGL/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGL/TQGL/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGLFormat/TQGLFormat/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGLFormat/TQGLFormat/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGLContext/TQGLContext/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGLContext/TQGLContext/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGLWidget/TQGLWidget/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGLWidget/TQGLWidget/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLNode/TQLNode/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLNode/TQLNode/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGList/TQGList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGList/TQGList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGListIterator/TQGListIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGListIterator/TQGListIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGListStdIterator/TQGListStdIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGListStdIterator/TQGListStdIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGPlugin/TQGPlugin/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGPlugin/TQGPlugin/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGrid/TQGrid/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGrid/TQGrid/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGridView/TQGridView/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGridView/TQGridView/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGroupBox/TQGroupBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGroupBox/TQGroupBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGuardedPtr/TQGuardedPtr/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGuardedPtr/TQGuardedPtr/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGuardedPtrPrivate/TQGuardedPtrPrivate/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGuardedPtrPrivate/TQGuardedPtrPrivate/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGVector/TQGVector/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGVector/TQGVector/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHBox/TQHBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHBox/TQHBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHButtonGroup/TQHButtonGroup/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHButtonGroup/TQHButtonGroup/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHeader/TQHeader/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHeader/TQHeader/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHGroupBox/TQHGroupBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHGroupBox/TQHGroupBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHostAddress/TQHostAddress/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHostAddress/TQHostAddress/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHttpHeader/TQHttpHeader/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHttpHeader/TQHttpHeader/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHttpResponseHeader/TQHttpResponseHeader/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHttpResponseHeader/TQHttpResponseHeader/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHttpRequestHeader/TQHttpRequestHeader/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHttpRequestHeader/TQHttpRequestHeader/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHttp/TQHttp/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHttp/TQHttp/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIconSet/TQIconSet/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIconSet/TQIconSet/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIconFactory/TQIconFactory/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIconFactory/TQIconFactory/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIconDragItem/TQIconDragItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIconDragItem/TQIconDragItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIconDrag/TQIconDrag/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIconDrag/TQIconDrag/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIconViewItem/TQIconViewItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIconViewItem/TQIconViewItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIconView/TQIconView/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIconView/TQIconView/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QImageFormatPlugin/TQImageFormatPlugin/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QImageFormatPlugin/TQImageFormatPlugin/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QImageTextKeyLang/TQImageTextKeyLang/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QImageTextKeyLang/TQImageTextKeyLang/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QImage/TQImage/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QImage/TQImage/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QImageIO/TQImageIO/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QImageIO/TQImageIO/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QInputContextFactory/TQInputContextFactory/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QInputContextFactory/TQInputContextFactory/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QInputContext/TQInputContext/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QInputContext/TQInputContext/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIntCache/TQIntCache/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIntCache/TQIntCache/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIntCacheIterator/TQIntCacheIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIntCacheIterator/TQIntCacheIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIntDict/TQIntDict/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIntDict/TQIntDict/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIntDictIterator/TQIntDictIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIntDictIterator/TQIntDictIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIODevice/TQIODevice/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIODevice/TQIODevice/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QJisCodec/TQJisCodec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QJisCodec/TQJisCodec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QJpUnicodeConv/TQJpUnicodeConv/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QJpUnicodeConv/TQJpUnicodeConv/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QKeySequence/TQKeySequence/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QKeySequence/TQKeySequence/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLabel/TQLabel/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLabel/TQLabel/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGLayoutIterator/TQGLayoutIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGLayoutIterator/TQGLayoutIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLayoutIterator/TQLayoutIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLayoutIterator/TQLayoutIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLayoutItem/TQLayoutItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLayoutItem/TQLayoutItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSpacerItem/TQSpacerItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSpacerItem/TQSpacerItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidgetItem/TQWidgetItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidgetItem/TQWidgetItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLayout/TQLayout/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLayout/TQLayout/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QGridLayout/TQGridLayout/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QGridLayout/TQGridLayout/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBoxLayout/TQBoxLayout/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBoxLayout/TQBoxLayout/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHBoxLayout/TQHBoxLayout/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHBoxLayout/TQHBoxLayout/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QVBoxLayout/TQVBoxLayout/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QVBoxLayout/TQVBoxLayout/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLCDNumber/TQLCDNumber/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLCDNumber/TQLCDNumber/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLibrary/TQLibrary/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLibrary/TQLibrary/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLineEdit/TQLineEdit/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLineEdit/TQLineEdit/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QListBox/TQListBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QListBox/TQListBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QListBoxItem/TQListBoxItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QListBoxItem/TQListBoxItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QListBoxText/TQListBoxText/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QListBoxText/TQListBoxText/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QListBoxPixmap/TQListBoxPixmap/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QListBoxPixmap/TQListBoxPixmap/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QListViewItem/TQListViewItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QListViewItem/TQListViewItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QListView/TQListView/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QListView/TQListView/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCheckListItem/TQCheckListItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCheckListItem/TQCheckListItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QListViewItemIterator/TQListViewItemIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QListViewItemIterator/TQListViewItemIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLocale/TQLocale/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLocale/TQLocale/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QLocalFs/TQLocalFs/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QLocalFs/TQLocalFs/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMainWindow/TQMainWindow/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMainWindow/TQMainWindow/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMapIterator/TQMapIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMapIterator/TQMapIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMapConstIterator/TQMapConstIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMapConstIterator/TQMapConstIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMapPrivateBase/TQMapPrivateBase/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMapPrivateBase/TQMapPrivateBase/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMapPrivate/TQMapPrivate/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMapPrivate/TQMapPrivate/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMap/TQMap/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMap/TQMap/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMemArray/TQMemArray/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMemArray/TQMemArray/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMenuBar/TQMenuBar/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMenuBar/TQMenuBar/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMenuItem/TQMenuItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMenuItem/TQMenuItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCustomMenuItem/TQCustomMenuItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCustomMenuItem/TQCustomMenuItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMenuData/TQMenuData/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMenuData/TQMenuData/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMessageBox/TQMessageBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMessageBox/TQMessageBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMetaProperty/TQMetaProperty/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMetaProperty/TQMetaProperty/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMetaObject/TQMetaObject/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMetaObject/TQMetaObject/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMetaObjectCleanUp/TQMetaObjectCleanUp/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMetaObjectCleanUp/TQMetaObjectCleanUp/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMimeSource/TQMimeSource/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMimeSource/TQMimeSource/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMimeSourceFactory/TQMimeSourceFactory/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMimeSourceFactory/TQMimeSourceFactory/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWindowsMime/TQWindowsMime/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWindowsMime/TQWindowsMime/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMacMime/TQMacMime/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMacMime/TQMacMime/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMotifPlusStyle/TQMotifPlusStyle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMotifPlusStyle/TQMotifPlusStyle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMotifStyle/TQMotifStyle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMotifStyle/TQMotifStyle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMovie/TQMovie/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMovie/TQMovie/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMultiLineEdit/TQMultiLineEdit/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMultiLineEdit/TQMultiLineEdit/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMutex/TQMutex/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMutex/TQMutex/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QMutexLocker/TQMutexLocker/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QMutexLocker/TQMutexLocker/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QInternal/TQInternal/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QInternal/TQInternal/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QNetworkProtocolFactoryBase/TQNetworkProtocolFactoryBase/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QNetworkProtocolFactoryBase/TQNetworkProtocolFactoryBase/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QNetworkProtocolFactory/TQNetworkProtocolFactory/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QNetworkProtocolFactory/TQNetworkProtocolFactory/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QNetworkProtocol/TQNetworkProtocol/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QNetworkProtocol/TQNetworkProtocol/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QNetworkOperation/TQNetworkOperation/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QNetworkOperation/TQNetworkOperation/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QNPStream/TQNPStream/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QNPStream/TQNPStream/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QNPWidget/TQNPWidget/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QNPWidget/TQNPWidget/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QNPInstance/TQNPInstance/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QNPInstance/TQNPInstance/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QNPlugin/TQNPlugin/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QNPlugin/TQNPlugin/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QObjectCleanupHandler/TQObjectCleanupHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QObjectCleanupHandler/TQObjectCleanupHandler/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QObjectDictionary/TQObjectDictionary/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QObjectDictionary/TQObjectDictionary/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QObject/TQObject/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QObject/TQObject/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QObjectUserData/TQObjectUserData/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QObjectUserData/TQObjectUserData/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QObjectList/TQObjectList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QObjectList/TQObjectList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QObjectListIterator/TQObjectListIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QObjectListIterator/TQObjectListIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QObjectListIt/TQObjectListIt/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QObjectListIt/TQObjectListIt/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPaintDevice/TQPaintDevice/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPaintDevice/TQPaintDevice/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPaintDeviceMetrics/TQPaintDeviceMetrics/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPaintDeviceMetrics/TQPaintDeviceMetrics/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPainter/TQPainter/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPainter/TQPainter/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QColorGroup/TQColorGroup/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QColorGroup/TQColorGroup/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPalette/TQPalette/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPalette/TQPalette/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPen/TQPen/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPen/TQPen/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPicture/TQPicture/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPicture/TQPicture/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPixmapCache/TQPixmapCache/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPixmapCache/TQPixmapCache/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPixmap/TQPixmap/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPixmap/TQPixmap/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPlatinumStyle/TQPlatinumStyle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPlatinumStyle/TQPlatinumStyle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPNGImageWriter/TQPNGImageWriter/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPNGImageWriter/TQPNGImageWriter/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPNGImagePacker/TQPNGImagePacker/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPNGImagePacker/TQPNGImagePacker/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPointArray/TQPointArray/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPointArray/TQPointArray/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPoint/TQPoint/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPoint/TQPoint/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPolygonScanner/TQPolygonScanner/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPolygonScanner/TQPolygonScanner/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPopupMenu/TQPopupMenu/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPopupMenu/TQPopupMenu/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPrintDialog/TQPrintDialog/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPrintDialog/TQPrintDialog/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPrinter/TQPrinter/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPrinter/TQPrinter/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QProcess/TQProcess/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QProcess/TQProcess/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QProgressBar/TQProgressBar/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QProgressBar/TQProgressBar/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QProgressDialog/TQProgressDialog/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QProgressDialog/TQProgressDialog/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrCollection/TQPtrCollection/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrCollection/TQPtrCollection/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrDict/TQPtrDict/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrDict/TQPtrDict/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrDictIterator/TQPtrDictIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrDictIterator/TQPtrDictIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrListStdIterator/TQPtrListStdIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrListStdIterator/TQPtrListStdIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrList/TQPtrList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrList/TQPtrList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrListIterator/TQPtrListIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrListIterator/TQPtrListIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrQueue/TQPtrQueue/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrQueue/TQPtrQueue/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrStack/TQPtrStack/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrStack/TQPtrStack/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPtrVector/TQPtrVector/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPtrVector/TQPtrVector/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QPushButton/TQPushButton/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QPushButton/TQPushButton/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QRadioButton/TQRadioButton/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QRadioButton/TQRadioButton/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QRangeControl/TQRangeControl/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QRangeControl/TQRangeControl/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSpinWidget/TQSpinWidget/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSpinWidget/TQSpinWidget/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QRect/TQRect/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QRect/TQRect/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QRegExp/TQRegExp/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QRegExp/TQRegExp/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QRegion/TQRegion/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QRegion/TQRegion/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QHebrewCodec/TQHebrewCodec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QHebrewCodec/TQHebrewCodec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QScrollBar/TQScrollBar/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QScrollBar/TQScrollBar/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QScrollView/TQScrollView/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QScrollView/TQScrollView/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSemaphore/TQSemaphore/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSemaphore/TQSemaphore/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QServerSocket/TQServerSocket/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QServerSocket/TQServerSocket/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSettings/TQSettings/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSettings/TQSettings/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSGIStyle/TQSGIStyle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSGIStyle/TQSGIStyle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSignal/TQSignal/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSignal/TQSignal/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSignalMapper/TQSignalMapper/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSignalMapper/TQSignalMapper/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QConnectionList/TQConnectionList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QConnectionList/TQConnectionList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QConnectionListIt/TQConnectionListIt/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QConnectionListIt/TQConnectionListIt/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSignalVec/TQSignalVec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSignalVec/TQSignalVec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSimpleRichText/TQSimpleRichText/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSimpleRichText/TQSimpleRichText/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSizeGrip/TQSizeGrip/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSizeGrip/TQSizeGrip/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSize/TQSize/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSize/TQSize/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSizePolicy/TQSizePolicy/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSizePolicy/TQSizePolicy/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSjisCodec/TQSjisCodec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSjisCodec/TQSjisCodec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSlider/TQSlider/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSlider/TQSlider/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSocketDevice/TQSocketDevice/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSocketDevice/TQSocketDevice/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSocket/TQSocket/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSocket/TQSocket/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSocketNotifier/TQSocketNotifier/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSocketNotifier/TQSocketNotifier/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSound/TQSound/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSound/TQSound/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSpinBox/TQSpinBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSpinBox/TQSpinBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSplashScreen/TQSplashScreen/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSplashScreen/TQSplashScreen/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSplitter/TQSplitter/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSplitter/TQSplitter/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlCursor/TQSqlCursor/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlCursor/TQSqlCursor/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlDatabase/TQSqlDatabase/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlDatabase/TQSqlDatabase/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlDriver/TQSqlDriver/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlDriver/TQSqlDriver/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlDriverPlugin/TQSqlDriverPlugin/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlDriverPlugin/TQSqlDriverPlugin/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlEditorFactory/TQSqlEditorFactory/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlEditorFactory/TQSqlEditorFactory/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlError/TQSqlError/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlError/TQSqlError/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlFieldPrivate/TQSqlFieldPrivate/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlFieldPrivate/TQSqlFieldPrivate/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlField/TQSqlField/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlField/TQSqlField/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlFieldInfo/TQSqlFieldInfo/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlFieldInfo/TQSqlFieldInfo/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlForm/TQSqlForm/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlForm/TQSqlForm/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSql/TQSql/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSql/TQSql/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlIndex/TQSqlIndex/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlIndex/TQSqlIndex/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlPropertyMap/TQSqlPropertyMap/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlPropertyMap/TQSqlPropertyMap/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlQuery/TQSqlQuery/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlQuery/TQSqlQuery/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlResultShared/TQSqlResultShared/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlResultShared/TQSqlResultShared/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlRecordShared/TQSqlRecordShared/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlRecordShared/TQSqlRecordShared/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlRecord/TQSqlRecord/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlRecord/TQSqlRecord/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlRecordInfo/TQSqlRecordInfo/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlRecordInfo/TQSqlRecordInfo/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlResult/TQSqlResult/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlResult/TQSqlResult/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlSelectCursorPrivate/TQSqlSelectCursorPrivate/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlSelectCursorPrivate/TQSqlSelectCursorPrivate/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSqlSelectCursor/TQSqlSelectCursor/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSqlSelectCursor/TQSqlSelectCursor/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStatusBar/TQStatusBar/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStatusBar/TQStatusBar/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QChar/TQChar/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QChar/TQChar/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QString/TQString/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QString/TQString/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCharRef/TQCharRef/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCharRef/TQCharRef/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QConstString/TQConstString/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QConstString/TQConstString/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QChar/TQChar/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QChar/TQChar/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QString/TQString/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QString/TQString/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCharRef/TQCharRef/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCharRef/TQCharRef/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QConstString/TQConstString/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QConstString/TQConstString/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStringList/TQStringList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStringList/TQStringList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStrListIterator/TQStrListIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStrListIterator/TQStrListIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStrIList/TQStrIList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStrIList/TQStrIList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStrVec/TQStrVec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStrVec/TQStrVec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStrIVec/TQStrIVec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStrIVec/TQStrIVec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStyleFactory/TQStyleFactory/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStyleFactory/TQStyleFactory/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStyleOption/TQStyleOption/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStyleOption/TQStyleOption/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStyle/TQStyle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStyle/TQStyle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStylePlugin/TQStylePlugin/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStylePlugin/TQStylePlugin/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStyleSheetItem/TQStyleSheetItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStyleSheetItem/TQStyleSheetItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QStyleSheet/TQStyleSheet/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QStyleSheet/TQStyleSheet/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QSyntaxHighlighter/TQSyntaxHighlighter/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QSyntaxHighlighter/TQSyntaxHighlighter/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTab/TQTab/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTab/TQTab/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTabBar/TQTabBar/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTabBar/TQTabBar/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTabDialog/TQTabDialog/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTabDialog/TQTabDialog/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTableSelection/TQTableSelection/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTableSelection/TQTableSelection/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTableItem/TQTableItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTableItem/TQTableItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QComboTableItem/TQComboTableItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QComboTableItem/TQComboTableItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QCheckTableItem/TQCheckTableItem/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QCheckTableItem/TQCheckTableItem/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTable/TQTable/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTable/TQTable/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTabWidget/TQTabWidget/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTabWidget/TQTabWidget/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextBrowser/TQTextBrowser/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextBrowser/TQTextBrowser/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextCodecFactory/TQTextCodecFactory/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextCodecFactory/TQTextCodecFactory/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextEncoder/TQTextEncoder/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextEncoder/TQTextEncoder/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextDecoder/TQTextDecoder/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextDecoder/TQTextDecoder/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextCodec/TQTextCodec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextCodec/TQTextCodec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextCodecPlugin/TQTextCodecPlugin/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextCodecPlugin/TQTextCodecPlugin/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextEdit/TQTextEdit/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextEdit/TQTextEdit/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextStream/TQTextStream/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextStream/TQTextStream/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextIStream/TQTextIStream/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextIStream/TQTextIStream/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextOStream/TQTextOStream/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextOStream/TQTextOStream/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTSManip/TQTSManip/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTSManip/TQTSManip/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextView/TQTextView/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextView/TQTextView/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QThread/TQThread/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QThread/TQThread/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QThreadStorageData/TQThreadStorageData/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QThreadStorageData/TQThreadStorageData/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QThreadStorage/TQThreadStorage/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QThreadStorage/TQThreadStorage/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTimer/TQTimer/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTimer/TQTimer/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTimer/TQTimer/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTimer/TQTimer/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTextOStreamIterator/TQTextOStreamIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTextOStreamIterator/TQTextOStreamIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QBackInsertIterator/TQBackInsertIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QBackInsertIterator/TQBackInsertIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QToolBar/TQToolBar/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QToolBar/TQToolBar/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QToolBox/TQToolBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QToolBox/TQToolBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QToolButton/TQToolButton/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QToolButton/TQToolButton/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QToolTipGroup/TQToolTipGroup/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QToolTipGroup/TQToolTipGroup/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QToolTip/TQToolTip/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QToolTip/TQToolTip/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QTsciiCodec/TQTsciiCodec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QTsciiCodec/TQTsciiCodec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QUrl/TQUrl/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QUrl/TQUrl/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QUrlInfo/TQUrlInfo/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QUrlInfo/TQUrlInfo/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QUrlOperator/TQUrlOperator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QUrlOperator/TQUrlOperator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QUtf8Codec/TQUtf8Codec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QUtf8Codec/TQUtf8Codec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QUtf16Codec/TQUtf16Codec/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QUtf16Codec/TQUtf16Codec/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValidator/TQValidator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValidator/TQValidator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QIntValidator/TQIntValidator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QIntValidator/TQIntValidator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QDoubleValidator/TQDoubleValidator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QDoubleValidator/TQDoubleValidator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QRegExpValidator/TQRegExpValidator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QRegExpValidator/TQRegExpValidator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValueListNode/TQValueListNode/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValueListNode/TQValueListNode/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValueListIterator/TQValueListIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValueListIterator/TQValueListIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValueListConstIterator/TQValueListConstIterator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValueListConstIterator/TQValueListConstIterator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValueListPrivate/TQValueListPrivate/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValueListPrivate/TQValueListPrivate/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValueList/TQValueList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValueList/TQValueList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValueStack/TQValueStack/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValueStack/TQValueStack/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValueVectorPrivate/TQValueVectorPrivate/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValueVectorPrivate/TQValueVectorPrivate/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QValueVector/TQValueVector/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QValueVector/TQValueVector/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QVariant/TQVariant/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QVariant/TQVariant/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QVBox/TQVBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QVBox/TQVBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QVButtonGroup/TQVButtonGroup/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QVButtonGroup/TQVButtonGroup/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QVGroupBox/TQVGroupBox/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QVGroupBox/TQVGroupBox/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWaitCondition/TQWaitCondition/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWaitCondition/TQWaitCondition/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWhatsThis/TQWhatsThis/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWhatsThis/TQWhatsThis/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidgetFactory/TQWidgetFactory/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidgetFactory/TQWidgetFactory/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidget/TQWidget/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidget/TQWidget/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidgetIntDict/TQWidgetIntDict/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidgetIntDict/TQWidgetIntDict/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidgetIntDictIt/TQWidgetIntDictIt/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidgetIntDictIt/TQWidgetIntDictIt/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidgetList/TQWidgetList/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidgetList/TQWidgetList/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidgetListIt/TQWidgetListIt/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidgetListIt/TQWidgetListIt/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidgetPlugin/TQWidgetPlugin/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidgetPlugin/TQWidgetPlugin/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidgetContainerPlugin/TQWidgetContainerPlugin/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidgetContainerPlugin/TQWidgetContainerPlugin/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWidgetStack/TQWidgetStack/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWidgetStack/TQWidgetStack/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWindowsStyle/TQWindowsStyle/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWindowsStyle/TQWindowsStyle/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWizard/TQWizard/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWizard/TQWizard/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWMatrix/TQWMatrix/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWMatrix/TQWMatrix/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QWorkspace/TQWorkspace/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QWorkspace/TQWorkspace/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlNamespaceSupport/TQXmlNamespaceSupport/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlNamespaceSupport/TQXmlNamespaceSupport/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlAttributes/TQXmlAttributes/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlAttributes/TQXmlAttributes/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlInputSource/TQXmlInputSource/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlInputSource/TQXmlInputSource/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlParseException/TQXmlParseException/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlParseException/TQXmlParseException/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlReader/TQXmlReader/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlReader/TQXmlReader/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlSimpleReader/TQXmlSimpleReader/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlSimpleReader/TQXmlSimpleReader/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlLocator/TQXmlLocator/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlLocator/TQXmlLocator/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlContentHandler/TQXmlContentHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlContentHandler/TQXmlContentHandler/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlErrorHandler/TQXmlErrorHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlErrorHandler/TQXmlErrorHandler/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlDTDHandler/TQXmlDTDHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlDTDHandler/TQXmlDTDHandler/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlEntityResolver/TQXmlEntityResolver/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlEntityResolver/TQXmlEntityResolver/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlLexicalHandler/TQXmlLexicalHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlLexicalHandler/TQXmlLexicalHandler/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlDeclHandler/TQXmlDeclHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlDeclHandler/TQXmlDeclHandler/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/QXmlDefaultHandler/TQXmlDefaultHandler/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/QXmlDefaultHandler/TQXmlDefaultHandler/g' {} \;
-
-find ./ -type f -iname "*.diff*" -exec sed -i 's/Qt/TQt/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/Qt/TQt/g' {} \;
-
-find ./ -type f -iname "*.patch*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/TTQ/TQ/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/TTQ/TQ/g' {} \;
-
-find ./ -type f -iname "*.patch*" -exec sed -i 's/\([^_]\)METHOD\([( ]\)/\1TQ_METHOD\2/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/\([^_]\)METHOD\([( ]\)/\1TQ_METHOD\2/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/\([^_]\)SLOT\([( ]\)/\1TQ_SLOT\2/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/\([^_]\)SLOT\([( ]\)/\1TQ_SLOT\2/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/\([^_]\)SIGNAL\([( ]\)/\1TQ_SIGNAL\2/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/\([^_]\)SIGNAL\([( ]\)/\1TQ_SIGNAL\2/g' {} \;
-
-find ./ -type f -iname "*.patch*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/TQT_TQT_/TQT_/g' {} \;
-
-# Back out some common mistakes
-find ./ -type f -iname "*.diff*" -exec sed -i 's/\([_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]\)TQ/\1Q/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/\([_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]\)TQ/\1Q/g' {} \;
-find ./ -type f -iname "*.diff*" -exec sed -i 's/Categories=TQt;/Categories=Qt;/g' {} \;
-find ./ -type f -iname "*.patch*" -exec sed -i 's/Categories=TQt;/Categories=Qt;/g' {} \;
-
diff --git a/qtinterface/dcopidl-tqt b/qtinterface/dcopidl-tqt
deleted file mode 100755
index 35c7bc5..0000000
--- a/qtinterface/dcopidl-tqt
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-if [[ $1 == "" ]]; then
- echo "Usage: dcopidl-tqt <dcopidl_binary> <input_file>"
-else
- cp -Rp $2 $2.bkp
- $1 $2
- cp -Rp $2.bkp $2
- rm -f $2.bkp
-fi
diff --git a/qtinterface/dcopidl2cpp-tqt b/qtinterface/dcopidl2cpp-tqt
deleted file mode 100755
index 4f9080a..0000000
--- a/qtinterface/dcopidl2cpp-tqt
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-if [[ $1 == "" ]]; then
- echo "Usage: dcopidl2cpp-tqt <dcopidl2cpp_binary> <options> <input_kidl_file>"
-else
- # This is more complicated than the others, as the kidl file must be parsed and the input files extracted
-
- # Extract the source working directory and all input files
- INPUT_FILES=$(cat ${BASH_ARGV[0]} | grep "<SOURCE>" | sed 's/<SOURCE>//g' | sed 's/<\/SOURCE>//g' | xargs)
- INPUT_DIR=${INPUT_FILES%/*}
-
- # Redirect all input files
- for curfile in $INPUT_FILES
- do
- cp -Rp "$curfile" "$curfile.bkp"
- done
-
- # Execute the dcopidl2cpp command
- $@
-
- # Undo input file redirection
- for curfile in $INPUT_FILES
- do
- cp -Rp "$curfile.bkp" "$curfile"
- rm -f "$curfile.bkp"
- done
-fi
diff --git a/qtinterface/dcopidlng-tqt b/qtinterface/dcopidlng-tqt
deleted file mode 100755
index 2ade87a..0000000
--- a/qtinterface/dcopidlng-tqt
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-if [[ $1 == "" ]]; then
- echo "Usage: dcopidlng-tqt <dcopidlng_binary> <options> <input_file>"
-else
- cp -Rp ${BASH_ARGV[0]} ${BASH_ARGV[0]}.bkp
- $@
- cp -Rp ${BASH_ARGV[0]}.bkp ${BASH_ARGV[0]}
- rm -f ${BASH_ARGV[0]}.bkp
-fi
diff --git a/qtinterface/iqtimer.cpp b/qtinterface/iqtimer.cpp
deleted file mode 100644
index 6e6a3df..0000000
--- a/qtinterface/iqtimer.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
-
-Copyright (C) 2010 Timothy Pearson <kb9vqf@pearsoncomputing.net>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Library General Public License for more details.
-
-You should have received a copy of the GNU Library General Public License
-along with this library; see the file COPYING.LIB. If not, write to
-the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-Boston, MA 02110-1301, USA.
-
-*/
-
-#include <tqt.h>
-#include <tqtimer.h>
diff --git a/qtinterface/mcopidl-tqt b/qtinterface/mcopidl-tqt
deleted file mode 100755
index 35d23e1..0000000
--- a/qtinterface/mcopidl-tqt
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-if [[ $1 == "" ]]; then
- echo "Usage: mcopidl-tqt <mcopidl_binary> <options> <input_file>"
-else
- cp -Rp ${BASH_ARGV[0]} ${BASH_ARGV[0]}.bkp
- $@
- cp -Rp ${BASH_ARGV[0]}.bkp ${BASH_ARGV[0]}
- rm -f ${BASH_ARGV[0]}.bkp
-fi
diff --git a/qtinterface/parser.sh b/qtinterface/parser.sh
deleted file mode 100755
index d45b28b..0000000
--- a/qtinterface/parser.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-#
-# Run me like this:
-# ls tq* | grep '\.h' | sed 's/\.h/\\\.h/g' | xargs ./parser.sh
-
-for var in "$@"
-do
- echo -n "find ./ -type f -iname \"*.c*\" -exec sed -i 's/\([^t]\)"
- echo -n ${var##t} | sed 's/\.h/\\\.h/g'
- echo -n "/\1"
- echo -n $var | sed 's/\.h/\\\.h/g'
- echo "/g' {} \;"
-
- echo -n "find ./ -type f -iname \"*.h*\" -exec sed -i 's/\([^t]\)"
- echo -n ${var##t} | sed 's/\.h/\\\.h/g'
- echo -n "/\1"
- echo -n $var | sed 's/\.h/\\\.h/g'
- echo "/g' {} \;"
-done
diff --git a/qtinterface/parser2.sh b/qtinterface/parser2.sh
deleted file mode 100755
index af55933..0000000
--- a/qtinterface/parser2.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-#
-# Run me like this:
-# ls tq* | grep .h | xargs ./parser2.sh
-#
-# Before use, check for correct operation with this
-# ls tq* | grep .h | xargs ./parser2.sh | grep EXPORT
-
-echo "#!/bin/bash"
-
-echo " "
-
-for var in "$@"
-do
- cat $var | grep "class " | sed 's/class //g' | sed 's/QM_EXPORT_XML //g' | sed 's/TQ_EXPORT //g' | sed 's/QM_EXPORT_TABLE //g' | sed 's/QM_EXPORT_SQL //g' | sed 's/QM_EXPORT_NETWORK //g' | sed 's/QM_EXPORT_CANVAS //g' | sed 's/QM_EXPORT_DOM //g' | sed 's/QM_EXPORT_HTTP //g' | sed 's/QM_EXPORT_ICONVIEW //g' | sed 's/QM_EXPORT_OPENGL //g' | sed 's/Q_EXPORT_CODECS_JP //g' | sed 's/Q_EXPORT_CODECS_CN //g' | sed 's/Q_PNGEXPORT //g' | sed 's/Q_EXPORT_STYLE_COMPACT //g' | sed 's/Q_EXPORT_CODECS_KR //g' | awk '{print $1}' | sed 's/\/\/.//g' | sed 's/\/\///g' | sed 's/://g' | sed 's/;//g' | xargs ./parser3.sh
-done
-
-echo " "
-
-echo "find ./ -type f -iname \"*.h*\" -exec sed -i 's/TTQ/TQ/g' {} \;"
-echo "find ./ -type f -iname \"*.h*\" -exec sed -i 's/TTQ/TQ/g' {} \;"
-echo "find ./ -type f -iname \"*.h*\" -exec sed -i 's/TTQ/TQ/g' {} \;"
-echo "find ./ -type f -iname \"*.h*\" -exec sed -i 's/TTQ/TQ/g' {} \;"
-echo "find ./ -type f -iname \"*.c*\" -exec sed -i 's/TTQ/TQ/g' {} \;"
-echo "find ./ -type f -iname \"*.c*\" -exec sed -i 's/TTQ/TQ/g' {} \;"
-echo "find ./ -type f -iname \"*.c*\" -exec sed -i 's/TTQ/TQ/g' {} \;"
-echo "find ./ -type f -iname \"*.c*\" -exec sed -i 's/TTQ/TQ/g' {} \;"
diff --git a/qtinterface/parser3.sh b/qtinterface/parser3.sh
deleted file mode 100755
index e784a41..0000000
--- a/qtinterface/parser3.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-#
-# DO NOT RUN ME
-# See parser2
-
-for var in "$@"
-do
-# echo -n "find ./ -type f -iname \"*.c*\" -exec sed -i 's/\([^T]\)"
- echo -n "find ./ -type f -iname \"*.c*\" -exec sed -i 's/"
- echo -n ${var##T}
-# echo -n "/\1"
- echo -n "/"
- echo -n $var
- echo "/g' {} \;"
-
-# echo -n "find ./ -type f -iname \"*.h*\" -exec sed -i 's/\([^T]\)"
- echo -n "find ./ -type f -iname \"*.h*\" -exec sed -i 's/"
- echo -n ${var##T}
-# echo -n "/\1"
- echo -n "/"
- echo -n $var
- echo "/g' {} \;"
-done
-