summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Andriot <francois.andriot@free.fr>2013-10-08 00:09:42 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-10-08 00:09:42 +0200
commit663a8e4aacfee47b0ab5a469d936ae2f900b5aa0 (patch)
tree746096296ee598ca9ad4f142fcd1cab25a835ad6
parent27bda4d79a59eb71d843b736579ea6ff6a93fc7a (diff)
downloadexperimental-663a8e4aacfee47b0ab5a469d936ae2f900b5aa0.tar.gz
experimental-663a8e4aacfee47b0ab5a469d936ae2f900b5aa0.zip
Added processing ypp files in script convert_existing_qt3_app_to_tqt3
-rwxr-xr-xqt3-tqt3/convert_existing_qt3_app_to_tqt32
1 files changed, 1 insertions, 1 deletions
diff --git a/qt3-tqt3/convert_existing_qt3_app_to_tqt3 b/qt3-tqt3/convert_existing_qt3_app_to_tqt3
index 22a2345..153514a 100755
--- a/qt3-tqt3/convert_existing_qt3_app_to_tqt3
+++ b/qt3-tqt3/convert_existing_qt3_app_to_tqt3
@@ -1,6 +1,6 @@
#!/bin/bash
-find ./ -type f -iname "*.c*" -o -iname "*.h*" -o -iname "*.ui*" -o -name "*.kcfg" -not -iwholename '*.git*' |\
+find ./ -type f -iname "*.c*" -o -iname "*.h*" -o -iname "*.ui*" -o -name "*.kcfg" -o -name "*.ypp" -not -iwholename '*.git*' |\
tr "\n" "\0" |\
xargs -r0 sed -i \
-e 's/^Q\([ABCDEFGHIJKLMNOPQRSTUVWXYZ]\)\([_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]\)/TQ\1\2/g' \