From 37d83f6c9c74e780be78aa440e16a5b66e09d32c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Mon, 23 Feb 2004 13:45:36 +0000 Subject: [PATCH] No need for quoting with KProcess. svn path=/trunk/kdebase/kwin/; revision=290537 --- workspace.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/workspace.cpp b/workspace.cpp index b1890f8510..72a3bd3222 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -1967,23 +1967,23 @@ void Workspace::helperDialog( const QString& message, const Client* c ) QString type; if( message == "noborderaltf3" ) { - args << "--msgbox" << ( "\'" - + i18n( "You have selected to show a window without its border.\n" + args << "--msgbox" << + i18n( "You have selected to show a window without its border.\n" "Without the border, you won't be able to enable the border " "again using the mouse. Use the window operations menu instead, " "activated using the %1 keyboard shortcut." ) - .arg( keys->shortcut( "Window Operations Menu" ).seq( 0 ).toString()) + "\'" ); + .arg( keys->shortcut( "Window Operations Menu" ).seq( 0 ).toString()); type = "altf3warning"; } else if( message == "fullscreenaltf3" ) { - args << "--msgbox" << ( "\'" - + i18n( "You have selected to show a window in fullscreen mode.\n" + args << "--msgbox" << + i18n( "You have selected to show a window in fullscreen mode.\n" "If the application itself doesn't have an option to turn the fullscreen " "mode off, you won't be able to disable it " "again using the mouse. Use the window operations menu instead, " "activated using the %1 keyboard shortcut." ) - .arg( keys->shortcut( "Window Operations Menu" ).seq( 0 ).toString()) + "\'" ); + .arg( keys->shortcut( "Window Operations Menu" ).seq( 0 ).toString()); type = "altf3warning"; } else