diff options
Diffstat (limited to 'qtinterface/tqt-replace-stream')
-rwxr-xr-x | qtinterface/tqt-replace-stream | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/qtinterface/tqt-replace-stream b/qtinterface/tqt-replace-stream index f063a34..261146a 100755 --- a/qtinterface/tqt-replace-stream +++ b/qtinterface/tqt-replace-stream @@ -10,7 +10,12 @@ else sed 's/\([^_]\)TQ\([^T_]\)/\1Q\2/g' | \ sed 's/TQT\([^_]\)/QT\1/g' | \ sed 's/Q\([^ _]*\)_OBJECT_NAME_STRING/TQ\1_OBJECT_NAME_STRING/g' | \ - sed 's/\([ \t]\)tq\([^:(_)\t ]\)/\1\2/g' + sed 's/\([ \t]\)tq\([^:(_)\t ]\)/\1\2/g' | \ + sed 's/TQ_PROPERTY/Q_PROPERTY/g' | \ + sed 's/TQ_ENUMS/Q_ENUMS/g' | \ + sed 's/TQ_SETS/Q_SETS/g' | \ + sed 's/TQ_OVERRIDE/Q_OVERRIDE/g' | \ + sed 's/TQ_CLASSINFO/Q_CLASSINFO/g' fi if [[ $QT_VER == 4 ]]; then |