diff options
author | Michele Calgaro <[email protected]> | 2024-11-29 16:43:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-11-29 18:02:05 +0900 |
commit | b785531662e8e6ff05ad8c57e1ea0dd3b94f9732 (patch) | |
tree | 468ededc858e8e1829795167820615f8f9481d8d /conversions/qt3-tqt3/convert_qt_itself_qt3_batch3 | |
parent | fe2f909e5a4cc6240bffdcdeea59cd2982b36470 (diff) | |
download | scripts-b785531662e8e6ff05ad8c57e1ea0dd3b94f9732.tar.gz scripts-b785531662e8e6ff05ad8c57e1ea0dd3b94f9732.zip |
Remove scripts to create TQt3 from Qt3. Improve Qt3 --> TQt3 app conversion script
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 02d714dbaf9d56d57773a3bc3550e74d6723df34)
Diffstat (limited to 'conversions/qt3-tqt3/convert_qt_itself_qt3_batch3')
-rwxr-xr-x | conversions/qt3-tqt3/convert_qt_itself_qt3_batch3 | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/conversions/qt3-tqt3/convert_qt_itself_qt3_batch3 b/conversions/qt3-tqt3/convert_qt_itself_qt3_batch3 deleted file mode 100755 index 41596b5..0000000 --- a/conversions/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 |