diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2017-02-04 22:02:04 +0200 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2017-02-05 07:43:25 +0000 |
commit | 67933e4c1f49e9e270e053d063232cda65dad193 (patch) | |
tree | 0d444eeded98526bbff761149d6098c4f4e8e79f /src/plugins/git/branchdialog.cpp | |
parent | 5b50854e57cfaf29a1aaeadd2b2f945b612b8967 (diff) | |
download | qt-creator-67933e4c1f49e9e270e053d063232cda65dad193.tar.gz |
Git: Move msgRepositoryLabel from StashDialog to GitPlugin
It's being used by many dialogs.
Change-Id: I3ef484cf8b9cc56210be1de5b4f201eb2f96ef67
Reviewed-by: André Hartmann <aha_1980@gmx.de>
Diffstat (limited to 'src/plugins/git/branchdialog.cpp')
-rw-r--r-- | src/plugins/git/branchdialog.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/git/branchdialog.cpp b/src/plugins/git/branchdialog.cpp index 294461c05b..11c14f8053 100644 --- a/src/plugins/git/branchdialog.cpp +++ b/src/plugins/git/branchdialog.cpp @@ -32,7 +32,6 @@ #include "gitutils.h" #include "gitconstants.h" #include "ui_branchdialog.h" -#include "stashdialog.h" // Label helpers #include <utils/qtcassert.h> #include <utils/execmenu.h> @@ -106,7 +105,7 @@ void BranchDialog::refresh(const QString &repository, bool force) return; m_repository = repository; - m_ui->repositoryLabel->setText(StashDialog::msgRepositoryLabel(m_repository)); + m_ui->repositoryLabel->setText(GitPlugin::msgRepositoryLabel(m_repository)); QString errorMessage; if (!m_model->refresh(m_repository, &errorMessage)) VcsOutputWindow::appendError(errorMessage); |