summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@trolltech.com>2009-11-16 13:13:08 +0100
committerOlivier Goffart <ogoffart@trolltech.com>2009-11-16 15:41:44 +0100
commitabc6f7047823f391c3fa30774b81d60a8ba451be (patch)
treee8b20d5de31e3bc5caf1585a39154bf7f5859274 /src
parentafb66d2993e78d631ae2fda3b03e9275a988d0a7 (diff)
Fix warning
Diffstat (limited to 'src')
-rw-r--r--src/gui/kernel/qkeysequence.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qkeysequence.cpp b/src/gui/kernel/qkeysequence.cpp
index 89c18fba1c..e3af6838e9 100644
--- a/src/gui/kernel/qkeysequence.cpp
+++ b/src/gui/kernel/qkeysequence.cpp
@@ -1036,7 +1036,7 @@ QKeySequence QKeySequence::mnemonic(const QString &text)
#else
found = true;
} else {
- qWarning(qPrintable(QString::fromLatin1("QKeySequence::mnemonic: \"%1\" contains multiple occurences of '&'").arg(text)));
+ qWarning("QKeySequence::mnemonic: \"%s\" contains multiple occurences of '&'", qPrintable(text));
#endif
}
}