From 64ffa8a1ba3a35554c5a22960a8f7580aec326cf Mon Sep 17 00:00:00 2001 From: Bruno Coudoin Date: Sun, 16 Feb 2014 23:03:04 +0100 Subject: [PATCH] Minor, more usual syntax for MacOSX. --- src/core/ApplicationInfo.cpp | 2 +- src/core/ApplicationInfo.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/ApplicationInfo.cpp b/src/core/ApplicationInfo.cpp index 89ea0a6ad6..03c92a31b9 100644 --- a/src/core/ApplicationInfo.cpp +++ b/src/core/ApplicationInfo.cpp @@ -60,7 +60,7 @@ ApplicationInfo::ApplicationInfo(QObject *parent): QObject(parent) #elif defined(Q_OS_WIN) m_platform = Windows; #elif defined(Q_OS_MAC) - m_platform = MacOs; + m_platform = MacOSX; #elif defined(Q_OS_ANDROID) m_platform = Android; #elif defined(Q_OS_IOS) diff --git a/src/core/ApplicationInfo.h b/src/core/ApplicationInfo.h index d8750e3606..8d834361fb 100644 --- a/src/core/ApplicationInfo.h +++ b/src/core/ApplicationInfo.h @@ -66,7 +66,7 @@ class ApplicationInfo : public QObject enum Platform { Linux, Windows, - MacOs, + MacOSX, Android, Ios, Blackberry