fixes #0003538: MacOSX 10.13 not in the 'About FreeCAD' dialog

This commit is contained in:
wmayer
2018-07-28 16:06:15 +02:00
parent 23b30518b9
commit 2ca81da42f

View File

@@ -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())
{