summaryrefslogtreecommitdiffstats
path: root/tqtinterface/conversion_scripts/convert_qt_itself5
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-04-21 23:22:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-04-21 23:22:20 +0900
commitdba036816b279bc1539a9f3894fbc414665d2bce (patch)
tree29e4bf00bafe515e7afdd02168d65a47a3f9fbc0 /tqtinterface/conversion_scripts/convert_qt_itself5
parent6f1b4f0c7505a049d992a33f6e409b7c75732d4b (diff)
downloadexperimental-dba036816b279bc1539a9f3894fbc414665d2bce.tar.gz
experimental-dba036816b279bc1539a9f3894fbc414665d2bce.zip
Removed unnecessary and/or TDE-unrelated code.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tqtinterface/conversion_scripts/convert_qt_itself5')
-rwxr-xr-xtqtinterface/conversion_scripts/convert_qt_itself555
1 files changed, 0 insertions, 55 deletions
diff --git a/tqtinterface/conversion_scripts/convert_qt_itself5 b/tqtinterface/conversion_scripts/convert_qt_itself5
deleted file mode 100755
index 49790eb..0000000
--- a/tqtinterface/conversion_scripts/convert_qt_itself5
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/bin/bash
-
-#find ./ -type f -iname "*" -exec sed -i 's/TQt::HorizontalLayout/HorizontalLayout/g' {} \;
-#find ./ -type f -iname "*" -exec sed -i 's/TQt::VerticalLayout/VerticalLayout/g' {} \;
-#find ./ -type f -iname "*" -exec sed -i 's/TQt::GridLayout/GridLayout/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/Orientation/Qt::Orientation/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/setQt::Orientation/setOrientation/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQString::null/TQString()/g' {} \;
-#find ./ -type f -iname "*" -exec sed -i 's/Dock/TQt::Dock/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQt::Qt::/Qt::/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/Qt::Qt::/Qt::/g' {} \;
-
-find ./ -type f -iname "*" -exec sed -i 's/tqtqlayout\.h/tqlayout\.h/g' {} \;
-
-
-
-find ./ -type f -iname "*" -exec sed -i 's/[ ,(]Horizontal/Qt::Horizontal/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/[ ,(]Vertical/Qt::Vertical/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQt::Horizontal/Qt::Horizontal/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQt::Vertical/Qt::Vertical/g' {} \;
-
-find ./ -type f -iname "*" -exec sed -i 's/TQt::LeftButton/Qt::LeftButton/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQt::RightButton/Qt::RightButton/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQt::MidButton/Qt::MidButton/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQt::NoButton/Qt::NoButton/g' {} \;
-
-find ./ -type f -iname "*" -exec sed -i 's/TQt::ISODate/Qt::ISODate/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQt::TextDate/Qt::TextDate/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQt::LocalDate/Qt::LocalDate/g' {} \;
-
-find ./ -type f -iname "*" -exec sed -i 's/TQ_OS_/Q_OS_/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQ_BYTE_ORDER/Q_BYTE_ORDER/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQ_BIG_ENDIAN/Q_BIG_ENDIAN/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQtWIN/QtWIN/g' {} \;
-
-find ./ -type f -iname "*" -exec sed -i 's/TQUANT/QUANT/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/FRETQ/FREQ/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/_SETQ_/_SEQ_/g' {} \;
-
-
-find ./ -type f -iname "*" -exec sed -i 's/_ETQUAL/_EQUAL/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/ComplexETQ/ComplexEQ/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/STQRT/SQRT/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/STQUARE/SQUARE/g' {} \;
-
-
-find ./ -type f -iname "*" -exec sed -i 's/tqttableview/qttableview/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/tqiomanager/qiomanager/g' {} \;
-
-find ./ -type f -iname "*" -exec sed -i 's/TStringToTQString/TStringToQString/g' {} \;
-find ./ -type f -iname "*" -exec sed -i 's/TQStringToTString/QStringToTString/g' {} \;
-
-find ./ -type f -iname "*" -exec sed -i 's/::qt_cast/::tqqt_cast/g' {} \;
-
-