diff options
author | Francois Andriot <francois.andriot@free.fr> | 2013-07-24 20:53:48 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-07-24 20:53:48 +0200 |
commit | 46961dbcafe7e14ea9c030f5c81777f6c5eacb5c (patch) | |
tree | bdcc29bcf1635f75b45efafc424d77251aa4fb5c | |
parent | d45374a2c000a80cf71099670c1e53eccbd52692 (diff) | |
download | experimental-46961dbcafe7e14ea9c030f5c81777f6c5eacb5c.tar.gz experimental-46961dbcafe7e14ea9c030f5c81777f6c5eacb5c.zip |
Added processing kcfg files in script convert_existing_qt3_app_to_tqt3
-rwxr-xr-x | qt3-tqt3/convert_existing_qt3_app_to_tqt3 | 2 |
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 526262e..f5a2984 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*" -not -iwholename '*.git*' |\ +find ./ -type f -iname "*.c*" -o -iname "*.h*" -o -iname "*.ui*" -o -name "*.kcfg" -not -iwholename '*.git*' |\ tr "\n" "\0" |\ xargs -r0 sed -i \ -e 's/^Q\([ABCDEFGHIJKLMNOPQRSTUVWXYZ]\)\([_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]\)/TQ\1\2/g' \ |