summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-11-29 16:52:56 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-11-29 21:06:16 +0900
commit4c78743b4f30fe8de9e7aee609c9fd4811c6037b (patch)
tree98083b407db2e27bdc2cada0d5c480b7da40ea38
parent8bd9e8f5247bd2ca15e24eb3d499c6cd84fdf3cd (diff)
downloadscripts-4c78743b4f30fe8de9e7aee609c9fd4811c6037b.tar.gz
scripts-4c78743b4f30fe8de9e7aee609c9fd4811c6037b.zip
kde conversion scripts: add KUniqueApplication and KAppDCOPInterface renaming
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rwxr-xr-xconversions/kde-tde/convert_existing_kde3_app_to_tde4
1 files changed, 4 insertions, 0 deletions
diff --git a/conversions/kde-tde/convert_existing_kde3_app_to_tde b/conversions/kde-tde/convert_existing_kde3_app_to_tde
index 9223620..305ce88 100755
--- a/conversions/kde-tde/convert_existing_kde3_app_to_tde
+++ b/conversions/kde-tde/convert_existing_kde3_app_to_tde
@@ -103,6 +103,8 @@ KDE_IS_PRELINKED|\
KDE_UTF8_FILENAMES|\
KDESYCOCA|\
KApplication|\
+KAppDCOPInterface|\
+KUniqueApplication|\
KCmdLineArgs|\
KInstance|\
KAboutData|\
@@ -344,6 +346,8 @@ xargs -r0 sed -ri \
-e "s|([^a-zA-Z0-9]\|^)KDESYCOCA|\1TDESYCOCA|g" \
\
-e "s|([^a-zA-Z0-9]\|^)KApplication|\1TDEApplication|g" \
+ -e "s|([^a-zA-Z0-9]\|^)KUniqueApplication|\1TDEUniqueApplication|g" \
+ -e "s|([^a-zA-Z0-9]\|^)KAppDCOPInterface|\1TDEAppDCOPInterface|g" \
-e "s|([^a-zA-Z0-9]\|^)KCmdLineArgs|\1TDECmdLineArgs|g" \
-e "s|([^a-zA-Z0-9]\|^)KInstance|\1TDEInstance|g" \
-e "s|([^a-zA-Z0-9]\|^)KAboutData|\1TDEAboutData|g" \