Fix compilation

1ac9f55429 broke compilation on Linux
This commit is contained in:
Kai Koehne
2009-09-03 12:00:00 +02:00
parent 1ac9f55429
commit db95eee51d
2 changed files with 1 additions and 5 deletions

View File

@@ -1772,7 +1772,7 @@ void ProjectExplorerPlugin::showInGraphicalShell()
QProcess::execute("/usr/bin/osascript", QStringList()
<< "-e"
<< "tell application \"Finder\" to activate");
#elif
#else
// we cannot select a file here, because no file browser really supports it...
QFileInfo fileInfo(m_currentNode->path());
QString xdgopen = Environment::systemEnvironment().searchInPath("xdg-open");

View File

@@ -184,9 +184,7 @@ private slots:
void addNewFile();
void addExistingFiles();
void openFile();
#if defined(Q_OS_MAC) || defined(Q_OS_WIN)
void showInGraphicalShell();
#endif
void removeFile();
void renameFile();
@@ -257,9 +255,7 @@ private:
QAction *m_addNewFileAction;
QAction *m_addExistingFilesAction;
QAction *m_openFileAction;
#if defined(Q_OS_MAC) || defined(Q_OS_WIN)
QAction *m_showInGraphicalShell;
#endif
QAction *m_removeFileAction;
QAction *m_renameFileAction;