Skip to content

Commit

Permalink
fixes #3538: MacOSX 10.13 not in the 'About FreeCAD' dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Jul 28, 2018
1 parent 23b3051 commit 2ca81da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Gui/Splashscreen.cpp
Expand Up @@ -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())
{
Expand Down

0 comments on commit 2ca81da

Please sign in to comment.