diff options
author | Slávek Banko <[email protected]> | 2016-03-25 13:09:38 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-03-25 13:09:38 +0100 |
commit | 7d3b39f8f66252b9dc64cb11ddf4d83c1262c2cd (patch) | |
tree | fd4bad50fc222a3a5fb19b33108fe1c626a984d7 | |
parent | 0e9f076b9df1c5039b5beed42555696d9c855946 (diff) | |
download | experimental-7d3b39f8f66252b9dc64cb11ddf4d83c1262c2cd.tar.gz experimental-7d3b39f8f66252b9dc64cb11ddf4d83c1262c2cd.zip |
Add renaming in convert_existing_kde3_app_to_tde script:
+ theKProcess
+ drawKStylePrimitive
Signed-off-by: Slávek Banko <[email protected]>
-rwxr-xr-x | kde-tde/convert_existing_kde3_app_to_tde | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kde-tde/convert_existing_kde3_app_to_tde b/kde-tde/convert_existing_kde3_app_to_tde index a7eb2d2..673a5df 100755 --- a/kde-tde/convert_existing_kde3_app_to_tde +++ b/kde-tde/convert_existing_kde3_app_to_tde @@ -211,7 +211,7 @@ KCmd|\ KAbout|\ KComp|\ KGlobal|\ -KProcess|\ +(|the)KProcess|\ KClipboard|\ Kwallet|\ KWallet|\ @@ -224,6 +224,7 @@ kaboutkde\.|\ kcmdlineargs\.|\ kapplication\.|\ kstyle\.|\ +drawKStylePrimitive|\ kdiroperator\.|\ klocale\.|\ kmessagebox\.|\ @@ -456,7 +457,7 @@ xargs -r0 sed -ri \ -e "s|([^a-zA-Z0-9]\|^)KAbout|\1TDEAbout|g" \ -e "s|([^a-zA-Z0-9]\|^)KComp|\1TDEComp|g" \ -e "s|([^a-zA-Z0-9]\|^)KGlobal|\1TDEGlobal|g" \ - -e "s|([^a-zA-Z0-9]\|^)KProcess|\1TDEProcess|g" \ + -e "s|([^a-zA-Z0-9]\|the\|^)KProcess|\1TDEProcess|g" \ -e "s|([^a-zA-Z0-9]\|^)KClipboard|\1TDEClipboard|g" \ -e "s|([^a-zA-Z0-9]\|^)Kwallet|\1TDEwallet|g" \ -e "s|([^a-zA-Z0-9]\|^)KWallet|\1TDEWallet|g" \ @@ -472,6 +473,7 @@ xargs -r0 sed -ri \ -e "s|([^a-zA-Z0-9]\|^)kcmdlineargs\.|\1tdecmdlineargs.|g" \ -e "s|([^a-zA-Z0-9]\|^)kapplication\.|\1tdeapplication.|g" \ -e "s|([^a-zA-Z0-9]\|^)kstyle\.|\1tdestyle.|g" \ + -e "s|([^a-zA-Z0-9]\|^)drawKStylePrimitive|\1drawTDEStylePrimitive|g" \ \ -e "s|([^a-zA-Z0-9]\|^)kdiroperator\.|\1tdediroperator.|g" \ -e "s|([^a-zA-Z0-9]\|^)klocale\.|\1tdelocale.|g" \ |