From: Friedemann Kleint Date: Thu, 12 Apr 2012 14:50:52 +0000 (+0200) Subject: Fix MinGW warning about qDebug() formats. X-Git-Tag: 071012110112~1719 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9ab2dabf9827b36cb83e1e83a955866190da08d;p=profile%2Fivi%2Fqtbase.git Fix MinGW warning about qDebug() formats. Change-Id: I927d17240a7cc7b88814601b0711aa46ca166ff9 Reviewed-by: Friedemann Kleint --- diff --git a/src/widgets/styles/qwindowsxpstyle.cpp b/src/widgets/styles/qwindowsxpstyle.cpp index 336d93e..6789598 100644 --- a/src/widgets/styles/qwindowsxpstyle.cpp +++ b/src/widgets/styles/qwindowsxpstyle.cpp @@ -323,7 +323,7 @@ void QWindowsXPStylePrivate::cleanupHandleMap() HTHEME QWindowsXPStylePrivate::createTheme(int theme, HWND hwnd) { if (theme < 0 || theme >= NThemes || !hwnd) { - qWarning("%s: Invalid parameters #%d, %p", theme, hwnd); + qWarning("%s: Invalid parameters #%d, %p", Q_FUNC_INFO, theme, hwnd); return 0; } if (!m_themes[theme]) {