diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-13 19:30:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-13 19:30:34 +0000 |
commit | c2c0603708e271d70ef63aa8ee0c87747c87e521 (patch) | |
tree | 4686ccdfb7a5c8b48294f908fe0b39d9b0dfecb3 /qtinterface/tqt-replace | |
parent | fdcd92f4028a1800c427dee8995984a835ef3146 (diff) | |
download | tqtinterface-c2c0603708e271d70ef63aa8ee0c87747c87e521.tar.gz tqtinterface-c2c0603708e271d70ef63aa8ee0c87747c87e521.zip |
Attempt to fix other instances of TQ_* in .ui files
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1231739 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtinterface/tqt-replace')
-rwxr-xr-x | qtinterface/tqt-replace | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtinterface/tqt-replace b/qtinterface/tqt-replace index c84f376..e0b9e2b 100755 --- a/qtinterface/tqt-replace +++ b/qtinterface/tqt-replace @@ -5,7 +5,7 @@ if [[ $1 == "" ]]; then echo "Usage: tqt-replace <input_file>" else if [[ $QT_VER == 3 ]]; then - sed -i 's/TQ\([^T]\)/Q\1/g' "$1" + sed -i 's/TQ\([^T_]\)/Q\1/g' "$1" sed -i 's/TQT\([^_]\)/QT\1/g' "$1" sed -i 's/Q_SLOTS>/slots>/g' "$1" sed -i 's/Q_SIGNALS>/signals>/g' "$1" |