Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <deathbaba@gmail.com>2011-01-30 01:29:54 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:11:28 +0300
commitb527df97c12289d64d8c5e6949d64bf4a50b0095 (patch)
tree0eea060bbc43ec3b8a059ed2cd2c5be277afba52 /qt/update_dialog.cpp
parentd9a3242426f8749e7ad645cae159470153a6cb01 (diff)
Minor update dialog fixes
Diffstat (limited to 'qt/update_dialog.cpp')
-rw-r--r--qt/update_dialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/qt/update_dialog.cpp b/qt/update_dialog.cpp
index 377c1b5165..3cf0a53433 100644
--- a/qt/update_dialog.cpp
+++ b/qt/update_dialog.cpp
@@ -53,8 +53,8 @@ namespace qt
{
//m_label = new QLabel(QObject::tr("Version: ") + VERSION_STRING, this);
- m_button = new QPushButton(QObject::tr(CHECK_FOR_UPDATE), this);
- connect(m_button, SIGNAL(clicked(bool)), this, SLOT(OnButtonClick(bool)));
+ QPushButton * m_updateButton = new QPushButton(QObject::tr(CHECK_FOR_UPDATE), this);
+ connect(m_updateButton, SIGNAL(clicked(bool)), this, SLOT(OnButtonClick(bool)));
m_tree = new QTreeWidget(this);
m_tree->setColumnCount(KNumberOfColumns);
@@ -65,7 +65,7 @@ namespace qt
QHBoxLayout * horizontalLayout = new QHBoxLayout();
// horizontalLayout->addWidget(m_label);
- horizontalLayout->addWidget(m_button);
+ horizontalLayout->addWidget(m_updateButton);
QVBoxLayout * verticalLayout = new QVBoxLayout();
verticalLayout->addLayout(horizontalLayout);
verticalLayout->addWidget(m_tree);
@@ -173,8 +173,8 @@ namespace qt
void UpdateDialog::OnButtonClick(bool)
{
- m_button->setText(QObject::tr("Checking for update..."));
- m_button->setDisabled(true);
+ m_updateButton->setText(QObject::tr("Checking for update..."));
+ m_updateButton->setDisabled(true);
m_storage.CheckForUpdate();
}
@@ -205,8 +205,8 @@ namespace qt
if (QMessageBox::Yes == QMessageBox::question(this, title, text, QMessageBox::Yes, QMessageBox::No))
m_storage.PerformUpdate();
}
- m_button->setText(CHECK_FOR_UPDATE);
- m_button->setDisabled(false);
+ m_updateButton->setText(CHECK_FOR_UPDATE);
+ m_updateButton->setDisabled(false);
}
void UpdateDialog::UpdateRowWithCountryInfo(TIndex const & index)