diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-11-16 12:13:08 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-11-16 14:41:44 (GMT) |
commit | abc6f7047823f391c3fa30774b81d60a8ba451be (patch) | |
tree | e8b20d5de31e3bc5caf1585a39154bf7f5859274 /src/gui | |
parent | afb66d2993e78d631ae2fda3b03e9275a988d0a7 (diff) | |
download | Qt-abc6f7047823f391c3fa30774b81d60a8ba451be.zip Qt-abc6f7047823f391c3fa30774b81d60a8ba451be.tar.gz Qt-abc6f7047823f391c3fa30774b81d60a8ba451be.tar.bz2 |
Fix warning
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/kernel/qkeysequence.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qkeysequence.cpp b/src/gui/kernel/qkeysequence.cpp index 89c18fb..e3af683 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 } } |