mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
MacOSX build fix
This commit is contained in:
parent
7782b83d90
commit
e038d291e2
@ -422,7 +422,7 @@ QString Environment::searchInPath(const QString &executable, const QStringList &
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Borrowed from QtCreator (http://stackoverflow.com/questions/3490336/how-to-reveal-in-finder-or-show-in-explorer-with-qt)
|
// Borrowed from QtCreator (http://stackoverflow.com/questions/3490336/how-to-reveal-in-finder-or-show-in-explorer-with-qt)
|
||||||
void showInGraphicalShell(const QString & /*pathIn*/)
|
void showInGraphicalShell(const QString & pathIn)
|
||||||
{
|
{
|
||||||
//QWidget * parent = NULL;
|
//QWidget * parent = NULL;
|
||||||
|
|
||||||
@ -453,6 +453,7 @@ void showInGraphicalShell(const QString & /*pathIn*/)
|
|||||||
<< QLatin1String("tell application \"Finder\" to activate");
|
<< QLatin1String("tell application \"Finder\" to activate");
|
||||||
QProcess::execute("/usr/bin/osascript", scriptArgs);
|
QProcess::execute("/usr/bin/osascript", scriptArgs);
|
||||||
#else
|
#else
|
||||||
|
Q_UNUSED(pathIn);
|
||||||
// we cannot select a file here, because no file browser really supports it...
|
// we cannot select a file here, because no file browser really supports it...
|
||||||
/*
|
/*
|
||||||
const QFileInfo fileInfo(pathIn);
|
const QFileInfo fileInfo(pathIn);
|
||||||
|
Loading…
Reference in New Issue
Block a user