From cd6b416cfd0e3589fd17df22e247e79e3f58e555 Mon Sep 17 00:00:00 2001 From: Dirk Mueller <mueller@kde.org> Date: Tue, 4 Jul 2006 08:26:08 +0000 Subject: [PATCH] compile++ svn path=/trunk/KDE/kdebase/workspace/; revision=557860 --- kcmkwin/kwinrules/ruleslist.cpp | 2 +- kcmkwin/kwinrules/ruleswidget.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kcmkwin/kwinrules/ruleslist.cpp b/kcmkwin/kwinrules/ruleslist.cpp index 94c748d004..ab841d2aff 100644 --- a/kcmkwin/kwinrules/ruleslist.cpp +++ b/kcmkwin/kwinrules/ruleslist.cpp @@ -171,7 +171,7 @@ void KCMRulesList::load() void KCMRulesList::save() { - KConfig cfg( "kwinrulesrc" ); + KConfig cfg( QLatin1String("kwinrulesrc") ); QStringList groups = cfg.groupList(); for( QStringList::ConstIterator it = groups.begin(); it != groups.end(); diff --git a/kcmkwin/kwinrules/ruleswidget.cpp b/kcmkwin/kwinrules/ruleswidget.cpp index d07184d414..977ea95c20 100644 --- a/kcmkwin/kwinrules/ruleswidget.cpp +++ b/kcmkwin/kwinrules/ruleswidget.cpp @@ -747,7 +747,7 @@ void EditShortcut::editShortcut() void EditShortcut::clearShortcut() { - shortcut->setText( "" ); + shortcut->setText( QLatin1String("") ); } EditShortcutDialog::EditShortcutDialog( QWidget* parent, const char* name )