diff options
| -rw-r--r-- | src/plugins/styles/windowsvista/qwindowsxpstyle.cpp | 4 | ||||
| -rw-r--r-- | src/widgets/dialogs/qwizard_win.cpp | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/styles/windowsvista/qwindowsxpstyle.cpp b/src/plugins/styles/windowsvista/qwindowsxpstyle.cpp index 0a47ccf68a9..4c982c14f48 100644 --- a/src/plugins/styles/windowsvista/qwindowsxpstyle.cpp +++ b/src/plugins/styles/windowsvista/qwindowsxpstyle.cpp @@ -286,10 +286,10 @@ static inline HWND createTreeViewHelperWindow()          void *hwnd = 0;          void *wndProc = reinterpret_cast<void *>(DefWindowProc);          if (QMetaObject::invokeMethod(ni, "createMessageWindow", Qt::DirectConnection, -                                  Q_RETURN_ARG(void *, hwnd), +                                  Q_RETURN_ARG(void*, hwnd),                                    Q_ARG(QString, QStringLiteral("QTreeViewThemeHelperWindowClass")),                                    Q_ARG(QString, QStringLiteral("QTreeViewThemeHelperWindow")), -                                  Q_ARG(void *, wndProc)) && hwnd) { +                                  Q_ARG(void*, wndProc)) && hwnd) {              return reinterpret_cast<HWND>(hwnd);          }      } diff --git a/src/widgets/dialogs/qwizard_win.cpp b/src/widgets/dialogs/qwizard_win.cpp index 666b192e9c7..bedcd1b0c22 100644 --- a/src/widgets/dialogs/qwizard_win.cpp +++ b/src/widgets/dialogs/qwizard_win.cpp @@ -263,7 +263,7 @@ static bool getCaptionQFont(int dpi, QFont *result)      QPlatformNativeInterface *ni = QGuiApplication::platformNativeInterface();      return ni && QMetaObject::invokeMethod(ni, "logFontToQFont", Qt::DirectConnection,                                             Q_RETURN_ARG(QFont, *result), -                                           Q_ARG(const void *, &logFont), +                                           Q_ARG(const void*, &logFont),                                             Q_ARG(int, dpi));  }  | 
