summaryrefslogtreecommitdiffstats
path: root/qt3-tqt3/convert_qt_itself_qt3_rename
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-04-05 00:27:56 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-04-05 00:27:56 +0900
commit9521203755e7750868accf26b8b46ab08251879b (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /qt3-tqt3/convert_qt_itself_qt3_rename
parentdba036816b279bc1539a9f3894fbc414665d2bce (diff)
downloadexperimental-9521203755e7750868accf26b8b46ab08251879b.tar.gz
experimental-9521203755e7750868accf26b8b46ab08251879b.zip
Experimental scripts have been moved to the TDE/scripts repository.HEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'qt3-tqt3/convert_qt_itself_qt3_rename')
-rwxr-xr-xqt3-tqt3/convert_qt_itself_qt3_rename13
1 files changed, 0 insertions, 13 deletions
diff --git a/qt3-tqt3/convert_qt_itself_qt3_rename b/qt3-tqt3/convert_qt_itself_qt3_rename
deleted file mode 100755
index d78be6f..0000000
--- a/qt3-tqt3/convert_qt_itself_qt3_rename
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-find ./ -type f -iname "*.c*" -exec sed -i 's/\(["<]\)q\(.*\)\.h\([">]\)/\1tq\2\.h\3/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\(["<]\)q\(.*\)\.h\([">]\)/\1tq\2\.h\3/g' {} \;
-
-find ./ -type f -iname "*.c*" -exec sed -i 's/\/q\(.*\)\.h\([">]\)/\/tq\1\.h\2/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\/q\(.*\)\.h\([">]\)/\/tq\1\.h\2/g' {} \;
-
-find ./ -type f -iname "*.c*" -exec sed -i 's/\(["<]\)q\(.*\)\.moc\([">]\)/\1tq\2\.moc\3/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\(["<]\)q\(.*\)\.moc\([">]\)/\1tq\2\.moc\3/g' {} \;
-
-find ./ -type f -iname "*.c*" -exec sed -i 's/\(["<]\)q\(.*\)\.cpp\([">]\)/\1tq\2\.cpp\3/g' {} \;
-find ./ -type f -iname "*.h*" -exec sed -i 's/\(["<]\)q\(.*\)\.cpp\([">]\)/\1tq\2\.cpp\3/g' {} \;