GUI: In win32, use Win32W instead of Win32A as default platform

This commit is contained in:
Daniel Marjamäki 2014-06-16 06:30:42 +02:00
parent c24a6e190b
commit 6f6642dcc5
1 changed files with 1 additions and 1 deletions

View File

@ -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