diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-30 03:20:08 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-30 03:20:08 +0000 |
commit | 3e04589246457f9eebc201239e8786f228789164 (patch) | |
tree | 044520ac359a82c0650fb40f400f5a9ebb4eb3fd | |
parent | 8e81621f38427742c4325e5b2022ad12fe612d41 (diff) | |
download | tqtinterface-3e04589246457f9eebc201239e8786f228789164.tar.gz tqtinterface-3e04589246457f9eebc201239e8786f228789164.zip |
Fix TQt3 FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1250225 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rwxr-xr-x | qtinterface/tqt-replace | 2 | ||||
-rwxr-xr-x | qtinterface/tqt-replace-stream | 2 | ||||
-rwxr-xr-x | qtinterface/tqt-replace-stream.cmake | 2 | ||||
-rwxr-xr-x | qtinterface/tqt-replace.cmake | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/qtinterface/tqt-replace b/qtinterface/tqt-replace index 260e38e..7289db1 100755 --- a/qtinterface/tqt-replace +++ b/qtinterface/tqt-replace @@ -17,7 +17,7 @@ else sed -i 's/TQ_SETS/Q_SETS/g' "$1" sed -i 's/TQ_OVERRIDE/Q_OVERRIDE/g' "$1" sed -i 's/TQ_CLASSINFO/Q_CLASSINFO/g' "$1" - sed -i 's/Qt::Orientation::Orientation/g' "$1" + sed -i 's/Qt::Orientation/Orientation/g' "$1" exit 0 fi diff --git a/qtinterface/tqt-replace-stream b/qtinterface/tqt-replace-stream index f017ed2..b105334 100755 --- a/qtinterface/tqt-replace-stream +++ b/qtinterface/tqt-replace-stream @@ -16,7 +16,7 @@ else sed 's/TQ_SETS/Q_SETS/g' | \ sed 's/TQ_OVERRIDE/Q_OVERRIDE/g' | \ sed 's/TQ_CLASSINFO/Q_CLASSINFO/g' | \ - sed 's/Qt::Orientation::Orientation/g' + sed 's/Qt::Orientation/Orientation/g' fi if [[ $QT_VER == 4 ]]; then diff --git a/qtinterface/tqt-replace-stream.cmake b/qtinterface/tqt-replace-stream.cmake index 69b2dd5..9110a2e 100755 --- a/qtinterface/tqt-replace-stream.cmake +++ b/qtinterface/tqt-replace-stream.cmake @@ -16,7 +16,7 @@ else sed 's/TQ_SETS/Q_SETS/g' | \ sed 's/TQ_OVERRIDE/Q_OVERRIDE/g' | \ sed 's/TQ_CLASSINFO/Q_CLASSINFO/g' | \ - sed 's/Qt::Orientation::Orientation/g' + sed 's/Qt::Orientation/Orientation/g' fi if [[ $QT_VERSION == 4 ]]; then diff --git a/qtinterface/tqt-replace.cmake b/qtinterface/tqt-replace.cmake index 07e1ca1..c081dce 100755 --- a/qtinterface/tqt-replace.cmake +++ b/qtinterface/tqt-replace.cmake @@ -17,7 +17,7 @@ else sed -i 's/TQ_SETS/Q_SETS/g' "$1" sed -i 's/TQ_OVERRIDE/Q_OVERRIDE/g' "$1" sed -i 's/TQ_CLASSINFO/Q_CLASSINFO/g' "$1" - sed -i 's/Qt::Orientation::Orientation/g' "$1" + sed -i 's/Qt::Orientation/Orientation/g' "$1" exit 0 fi |