From 2ca81da42feb50e1f80f0f6eda91959d1a1026dd Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 28 Jul 2018 16:06:15 +0200 Subject: [PATCH] fixes #0003538: MacOSX 10.13 not in the 'About FreeCAD' dialog --- src/Gui/Splashscreen.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Gui/Splashscreen.cpp b/src/Gui/Splashscreen.cpp index eb74527466..b3664d0e1e 100644 --- a/src/Gui/Splashscreen.cpp +++ b/src/Gui/Splashscreen.cpp @@ -281,6 +281,10 @@ class SystemInfo { public: static QString getOperatingSystem() { +#if QT_VERSION >= 0x050400 + return QSysInfo::prettyProductName(); +#endif + #if defined (Q_OS_WIN32) switch(QSysInfo::windowsVersion()) {