summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qlocale_mac.mm
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qlocale_mac.mm')
-rw-r--r--src/corelib/tools/qlocale_mac.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/tools/qlocale_mac.mm b/src/corelib/tools/qlocale_mac.mm
index c824ec0..172997d 100644
--- a/src/corelib/tools/qlocale_mac.mm
+++ b/src/corelib/tools/qlocale_mac.mm
@@ -61,9 +61,9 @@ static QByteArray envVarLocale()
static QByteArray lang = 0;
#ifdef Q_OS_UNIX
lang = qgetenv("LC_ALL");
- if (lang.isNull())
+ if (lang.isEmpty())
lang = qgetenv("LC_NUMERIC");
- if (lang.isNull())
+ if (lang.isEmpty())
#endif
lang = qgetenv("LANG");
return lang;