fix mac compile problem

This commit is contained in:
dante ruiz 2019-10-10 09:52:07 -07:00
parent 4f0936d384
commit e505174041

View file

@ -43,7 +43,7 @@ Q_INVOKABLE void LauncherState::openURLInBrowser(QString url) {
#ifdef Q_OS_WIN
ShellExecute(0, 0, url.toLatin1(), 0, 0 , SW_SHOW);
#elif defined(Q_OS_DARWIN)
system("open \"" + url.toLatin1() + "\");
system("open \"" + url.toLatin1() + "\"");
#endif
}