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
@@ -537,13 +537,13 @@ void BazaarPlugin::createSubmitEditorActions()
|
||||
connect(m_editorCommit, &QAction::triggered, this, &BazaarPlugin::commitFromEditor);
|
||||
|
||||
m_editorDiff = new QAction(VcsBaseSubmitEditor::diffIcon(), tr("Diff &Selected Files"), this);
|
||||
command = ActionManager::registerAction(m_editorDiff, DIFFEDITOR, context);
|
||||
ActionManager::registerAction(m_editorDiff, DIFFEDITOR, context);
|
||||
|
||||
m_editorUndo = new QAction(tr("&Undo"), this);
|
||||
command = ActionManager::registerAction(m_editorUndo, Core::Constants::UNDO, context);
|
||||
ActionManager::registerAction(m_editorUndo, Core::Constants::UNDO, context);
|
||||
|
||||
m_editorRedo = new QAction(tr("&Redo"), this);
|
||||
command = ActionManager::registerAction(m_editorRedo, Core::Constants::REDO, context);
|
||||
ActionManager::registerAction(m_editorRedo, Core::Constants::REDO, context);
|
||||
}
|
||||
|
||||
void BazaarPlugin::commit()
|
||||
|
Reference in New Issue
Block a user