From 7f5324e3f648e8bfe1375862548e404aa7607240 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 16 Nov 2011 08:08:48 +1000 Subject: [PATCH] Better QT Version check in previous code --- common_gui.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/common_gui.cpp b/common_gui.cpp index b179d5ba..fd1e26e2 100644 --- a/common_gui.cpp +++ b/common_gui.cpp @@ -1,7 +1,14 @@ #include "common_gui.h" #include "qglobal.h" -#if QT_VERSION<0x400800 +#if (QT_VERSION >= QT_VERSION_CHECK(4,8,0)) +// Qt 4.8 makes this a whole lot easier +Qt::DayOfWeek firstDayOfWeekFromLocale() +{ + return QLocale::system().firstDayOfWeek(); +} + +#else #if defined(Q_OS_MAC) #include #endif @@ -45,12 +52,5 @@ Qt::DayOfWeek firstDayOfWeekFromLocale() return firstDay; } - -#else -// Qt 4.8 makes this a whole lot easier -Qt::DayOfWeek firstDayOfWeekFromLocale() -{ - return QLocale::system().firstDayOfWeek(); -} #endif