From 04f693048fa4631100cd9f1ac6a26c1e9cd2e005 Mon Sep 17 00:00:00 2001 From: Uwe Date: Sun, 27 Mar 2022 15:30:48 +0200 Subject: [PATCH] [Gui] a Win compile fix --- src/Gui/InputField.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/InputField.cpp b/src/Gui/InputField.cpp index a8806713cb..fb0aec5731 100644 --- a/src/Gui/InputField.cpp +++ b/src/Gui/InputField.cpp @@ -95,7 +95,7 @@ InputField::InputField(QWidget * parent) QObject::connect(this, SIGNAL(textChanged(QString)), this, SLOT(newInput(QString))); -#if FC_OS_WIN32 +#ifdef FC_OS_WIN32 setLocale(QLocale()); #endif }