From 6f6642dcc5f04724197d782c432f0c84544db37b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 16 Jun 2014 06:30:42 +0200 Subject: [PATCH] GUI: In win32, use Win32W instead of Win32A as default platform --- gui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index ad6ee66de..2f3f141f0 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -183,7 +183,7 @@ MainWindow::MainWindow(TranslationHandler* th, QSettings* settings) : // For other platforms default to unspecified/default which means the // platform Cppcheck GUI was compiled on. #if defined(_WIN32) - const Settings::PlatformType defaultPlat = Settings::Win32A; + const Settings::PlatformType defaultPlat = Settings::Win32W; #else const Settings::PlatformType defaultPlat = Settings::Unspecified; #endif