diff options
author | Robert Loehning <robert.loehning@nokia.com> | 2011-08-26 18:33:38 +0200 |
---|---|---|
committer | Robert Löhning <robert.loehning@nokia.com> | 2011-08-29 12:17:31 +0200 |
commit | 662c66ef6b31c6d5a36bc960e13e06e576a47b77 (patch) | |
tree | eec9d8067971752adad9b6f032e2ebf8bedd14e3 /src/plugins/projectexplorer/foldernavigationwidget.cpp | |
parent | 9e0fc18fba2665a394b08b827ad23eb7a9ebbff1 (diff) | |
download | qt-creator-662c66ef6b31c6d5a36bc960e13e06e576a47b77.tar.gz |
Moved class FileUtils out of Internal namespace
...because it is being exported.
Change-Id: If2892f8455b7c7fb9a78a8cde27642901ae4bf3a
Reviewed-on: http://codereview.qt.nokia.com/3676
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'src/plugins/projectexplorer/foldernavigationwidget.cpp')
-rw-r--r-- | src/plugins/projectexplorer/foldernavigationwidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/projectexplorer/foldernavigationwidget.cpp b/src/plugins/projectexplorer/foldernavigationwidget.cpp index 9c43dbdb71..374bf17a52 100644 --- a/src/plugins/projectexplorer/foldernavigationwidget.cpp +++ b/src/plugins/projectexplorer/foldernavigationwidget.cpp @@ -307,9 +307,9 @@ void FolderNavigationWidget::contextMenuEvent(QContextMenuEvent *ev) QAction *actionOpen = menu.addAction(actionOpenText(m_fileSystemModel, current)); actionOpen->setEnabled(hasCurrentItem); // Explorer & teminal - QAction *actionExplorer = menu.addAction(Core::Internal::FileUtils::msgGraphicalShellAction()); + QAction *actionExplorer = menu.addAction(Core::FileUtils::msgGraphicalShellAction()); actionExplorer->setEnabled(hasCurrentItem); - QAction *actionTerminal = menu.addAction(Core::Internal::FileUtils::msgTerminalAction()); + QAction *actionTerminal = menu.addAction(Core::FileUtils::msgTerminalAction()); actionTerminal->setEnabled(hasCurrentItem); // open with... @@ -338,11 +338,11 @@ void FolderNavigationWidget::contextMenuEvent(QContextMenuEvent *ev) return; } if (action == actionTerminal) { - Core::Internal::FileUtils::openTerminal(m_fileSystemModel->filePath(current)); + Core::FileUtils::openTerminal(m_fileSystemModel->filePath(current)); return; } if (action == actionExplorer) { - Core::Internal::FileUtils::showInGraphicalShell(this, m_fileSystemModel->filePath(current)); + Core::FileUtils::showInGraphicalShell(this, m_fileSystemModel->filePath(current)); return; } ProjectExplorerPlugin::openEditorFromAction(action, |