forked from qt-creator/qt-creator
Gerrit: Rename member
This is more in line with what we do elsewhere. Change-Id: If5fb57a498c021c2c2f830d9aaa375bc13afeb19 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
6a4d6efb3b
commit
2998d33562
@@ -136,7 +136,7 @@ GerritPushDialog::GerritPushDialog(const QString &workingDir, const QString &rev
|
||||
QDialog(parent),
|
||||
m_workingDir(workingDir),
|
||||
m_ui(new Ui::GerritPushDialog),
|
||||
m_valid(false)
|
||||
m_isValid(false)
|
||||
{
|
||||
m_client = GitPlugin::instance()->gitClient();
|
||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||
@@ -166,7 +166,7 @@ GerritPushDialog::GerritPushDialog(const QString &workingDir, const QString &rev
|
||||
m_ui->reviewersLineEdit->setValidator(noSpaceValidator);
|
||||
m_ui->topicLineEdit->setValidator(noSpaceValidator);
|
||||
|
||||
m_valid = true;
|
||||
m_isValid = true;
|
||||
}
|
||||
|
||||
GerritPushDialog::~GerritPushDialog()
|
||||
@@ -216,9 +216,9 @@ void GerritPushDialog::setChangeRange()
|
||||
.arg(calculateChangeRange(branch)));
|
||||
}
|
||||
|
||||
bool GerritPushDialog::valid() const
|
||||
bool GerritPushDialog::isValid() const
|
||||
{
|
||||
return m_valid;
|
||||
return m_isValid;
|
||||
}
|
||||
|
||||
void GerritPushDialog::setRemoteBranches(bool includeOld)
|
||||
|
Reference in New Issue
Block a user