From 21e05c62b6e6d5e6aef99222038a5082058f66c0 Mon Sep 17 00:00:00 2001 From: mae <qt-info@nokia.com> Date: Mon, 20 Jul 2009 15:15:35 +0200 Subject: [PATCH] clarify file->new/open/open with This is a fix for the problem, that some users were unable to figure out how to open projects. --- src/plugins/coreplugin/mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/coreplugin/mainwindow.cpp b/src/plugins/coreplugin/mainwindow.cpp index 0dc130d845e..be678e721c5 100644 --- a/src/plugins/coreplugin/mainwindow.cpp +++ b/src/plugins/coreplugin/mainwindow.cpp @@ -558,21 +558,21 @@ void MainWindow::registerDefaultActions() connect(m_focusToEditor, SIGNAL(activated()), this, SLOT(setFocusToEditor())); // New File Action - m_newAction = new QAction(QIcon(Constants::ICON_NEWFILE), tr("&New..."), this); + m_newAction = new QAction(QIcon(Constants::ICON_NEWFILE), tr("&New File/Project..."), this); cmd = am->registerAction(m_newAction, Constants::NEW, m_globalContext); cmd->setDefaultKeySequence(QKeySequence::New); mfile->addAction(cmd, Constants::G_FILE_NEW); connect(m_newAction, SIGNAL(triggered()), this, SLOT(newFile())); // Open Action - m_openAction = new QAction(QIcon(Constants::ICON_OPENFILE), tr("&Open..."), this); + m_openAction = new QAction(QIcon(Constants::ICON_OPENFILE), tr("&Open File/Project..."), this); cmd = am->registerAction(m_openAction, Constants::OPEN, m_globalContext); cmd->setDefaultKeySequence(QKeySequence::Open); mfile->addAction(cmd, Constants::G_FILE_OPEN); connect(m_openAction, SIGNAL(triggered()), this, SLOT(openFile())); // Open With Action - m_openWithAction = new QAction(tr("&Open With..."), this); + m_openWithAction = new QAction(tr("&Open File With..."), this); cmd = am->registerAction(m_openWithAction, Constants::OPEN_WITH, m_globalContext); mfile->addAction(cmd, Constants::G_FILE_OPEN); connect(m_openWithAction, SIGNAL(triggered()), this, SLOT(openFileWith())); -- GitLab