forked from qt-creator/qt-creator
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>
This commit is contained in:
committed by
Robert Löhning
parent
9e0fc18fba
commit
662c66ef6b
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user