summaryrefslogtreecommitdiffstats
path: root/qt3-tqt3/convert_qt_itself_qt3_batch3
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-04-05 01:09:36 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-04-05 01:09:36 +0900
commit709ee21567a86cb9c1bfcfc541b6de730ba3e279 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /qt3-tqt3/convert_qt_itself_qt3_batch3
parent1df632a0e6e550a5a100247c6b4713078e78f413 (diff)
downloadexperimental-r14.0.x.tar.gz
experimental-r14.0.x.zip
Experimental scripts have been removed from non master branch.r14.0.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'qt3-tqt3/convert_qt_itself_qt3_batch3')
-rwxr-xr-xqt3-tqt3/convert_qt_itself_qt3_batch319
1 files changed, 0 insertions, 19 deletions
diff --git a/qt3-tqt3/convert_qt_itself_qt3_batch3 b/qt3-tqt3/convert_qt_itself_qt3_batch3
deleted file mode 100755
index 41596b5..0000000
--- a/qt3-tqt3/convert_qt_itself_qt3_batch3
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_INT8/TQ_INT8/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_INT16/TQ_INT16/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_INT32/TQ_INT32/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_INT64/TQ_INT64/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_UINT8/TQ_UINT8/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_UINT16/TQ_UINT16/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_UINT32/TQ_UINT32/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_UINT64/TQ_UINT64/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_LONG/TQ_LONG/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_LLONG/TQ_LLONG/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_ULONG/TQ_ULONG/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/Q_ULLONG/TQ_ULLONG/g' {} \;
-
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/TTQ_INT/TQ_INT/g' {} \;
-find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/TTQ_UINT/TQ_UINT/g' {} \;
-
-exit 0