aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/resourceeditor
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@digia.com>2014-03-10 18:30:56 +0100
committerRobert Loehning <robert.loehning@digia.com>2014-03-11 10:59:05 +0100
commit3befd91113ff61e38e24a598ad830043b6527bef (patch)
tree0bb86f9a610e54681615892171667dffd505c32a /src/plugins/resourceeditor
parent69ea24b011b46db189996b21d0f0ab454568147e (diff)
resourceeditor: Make qrc-files' context menu more consistent
Change-Id: I97e5354bc892194d34ba968b0428bbc3bfdcd11d Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/plugins/resourceeditor')
-rw-r--r--src/plugins/resourceeditor/resourceeditorplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/resourceeditor/resourceeditorplugin.cpp b/src/plugins/resourceeditor/resourceeditorplugin.cpp
index f70e3c316c7..8ae6b7cefd4 100644
--- a/src/plugins/resourceeditor/resourceeditorplugin.cpp
+++ b/src/plugins/resourceeditor/resourceeditorplugin.cpp
@@ -162,12 +162,12 @@ bool ResourceEditorPlugin::initialize(const QStringList &arguments, QString *err
folderContextMenu->addAction(command, ProjectExplorer::Constants::G_FOLDER_FILES);
connect(m_removePrefix, SIGNAL(triggered()), this, SLOT(removePrefixContextMenu()));
- m_renameResourceFile = new QAction(tr("Rename File"), this);
+ m_renameResourceFile = new QAction(tr("Rename..."), this);
command = Core::ActionManager::registerAction(m_renameResourceFile, Constants::C_RENAME_FILE, projectTreeContext);
folderContextMenu->addAction(command, ProjectExplorer::Constants::G_FOLDER_FILES);
connect(m_renameResourceFile, SIGNAL(triggered()), this, SLOT(renameFileContextMenu()));
- m_removeResourceFile = new QAction(tr("Remove File"), this);
+ m_removeResourceFile = new QAction(tr("Remove File..."), this);
command = Core::ActionManager::registerAction(m_removeResourceFile, Constants::C_REMOVE_FILE, projectTreeContext);
folderContextMenu->addAction(command, ProjectExplorer::Constants::G_FOLDER_FILES);
connect(m_removeResourceFile, SIGNAL(triggered()), this, SLOT(removeFileContextMenu()));