Better QT Version check in previous code

This commit is contained in:
Mark Watkins 2011-11-16 08:08:48 +10:00
parent 231e8749c6
commit 7f5324e3f6

View File

@ -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 <Cocoa/Cocoa.h>
#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