mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +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
|
||||
|
||||
// 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;
|
||||
|
||||
@ -453,6 +453,7 @@ void showInGraphicalShell(const QString & /*pathIn*/)
|
||||
<< QLatin1String("tell application \"Finder\" to activate");
|
||||
QProcess::execute("/usr/bin/osascript", scriptArgs);
|
||||
#else
|
||||
Q_UNUSED(pathIn);
|
||||
// we cannot select a file here, because no file browser really supports it...
|
||||
/*
|
||||
const QFileInfo fileInfo(pathIn);
|
||||
|
Loading…
Reference in New Issue
Block a user