forked from qt-creator/qt-creator
VCS: Remove dead stores
Change-Id: I998e523c76bdc0b76cbc6089092a0dda4812ca16 Reviewed-by: Nikita Baryshnikov <nib952051@gmail.com> Reviewed-by: André Hartmann <aha_1980@gmx.de>
This commit is contained in:
committed by
Orgad Shaneh
parent
7db238c116
commit
9a1c382273
@@ -522,13 +522,13 @@ void MercurialPlugin::createSubmitEditorActions()
|
||||
connect(editorCommit, SIGNAL(triggered()), this, SLOT(commitFromEditor()));
|
||||
|
||||
editorDiff = new QAction(VcsBaseSubmitEditor::diffIcon(), tr("Diff &Selected Files"), this);
|
||||
command = Core::ActionManager::registerAction(editorDiff, Core::Id(Constants::DIFFEDITOR), context);
|
||||
Core::ActionManager::registerAction(editorDiff, Core::Id(Constants::DIFFEDITOR), context);
|
||||
|
||||
editorUndo = new QAction(tr("&Undo"), this);
|
||||
command = Core::ActionManager::registerAction(editorUndo, Core::Id(Core::Constants::UNDO), context);
|
||||
Core::ActionManager::registerAction(editorUndo, Core::Id(Core::Constants::UNDO), context);
|
||||
|
||||
editorRedo = new QAction(tr("&Redo"), this);
|
||||
command = Core::ActionManager::registerAction(editorRedo, Core::Id(Core::Constants::REDO), context);
|
||||
Core::ActionManager::registerAction(editorRedo, Core::Id(Core::Constants::REDO), context);
|
||||
}
|
||||
|
||||
void MercurialPlugin::commit()
|
||||
|
||||
Reference in New Issue
Block a user