diff options
Diffstat (limited to 'x11/kdebase4/files/patch-ksystraycmd-quoting.diff')
-rw-r--r-- | x11/kdebase4/files/patch-ksystraycmd-quoting.diff | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/x11/kdebase4/files/patch-ksystraycmd-quoting.diff b/x11/kdebase4/files/patch-ksystraycmd-quoting.diff deleted file mode 100644 index 8543f7254a95..000000000000 --- a/x11/kdebase4/files/patch-ksystraycmd-quoting.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- ksystraycmd/main.cpp (revision 572102) -+++ ksystraycmd/main.cpp (revision 572103) -@@ -5,6 +5,7 @@ - #include <kcmdlineargs.h> - #include <kdebug.h> - #include <klocale.h> -+#include <kprocess.h> - - #include "ksystraycmd.h" - -@@ -94,7 +95,7 @@ int main( int argc, char *argv[] ) - // Read the command - QString command; - for ( int i = 0; i < args->count(); i++ ) -- command += QCString( args->arg(i) ) + " "; -+ command += KProcess::quote(QString::fromLocal8Bit( args->arg(i) )) + " "; - if ( !command.isEmpty() ) - cmd.setCommand( command ); - |