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:
authorYuri Gorshenin <y@maps.me>2015-07-27 12:56:45 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:57:39 +0300
commitacb80ad11be5e7431cf31fac57bbe104886e3ef6 (patch)
tree013a97c129fc4eae02e655f89beefe84a8c636e4 /qt/update_dialog.cpp
parent2f3b3e6728cd3f660df23d7b4f64562aec85b82b (diff)
Removed E-letter from TMapOptions set.
Diffstat (limited to 'qt/update_dialog.cpp')
-rw-r--r--qt/update_dialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/qt/update_dialog.cpp b/qt/update_dialog.cpp
index e94964a90c..3131e2a9ee 100644
--- a/qt/update_dialog.cpp
+++ b/qt/update_dialog.cpp
@@ -150,10 +150,10 @@ namespace qt
QAbstractButton * res = ask.clickedButton();
if (res == btns[0])
- m_framework.DownloadCountry(countryIndex, TMapOptions::EMapWithCarRouting);
+ m_framework.DownloadCountry(countryIndex, TMapOptions::MapWithCarRouting);
if (res == btns[1])
- m_framework.DeleteCountry(countryIndex, TMapOptions::EMapWithCarRouting);
+ m_framework.DeleteCountry(countryIndex, TMapOptions::MapWithCarRouting);
}
break;
@@ -167,18 +167,18 @@ namespace qt
ask.setDefaultButton(QMessageBox::No);
if (ask.exec() == QMessageBox::Yes)
- m_framework.DeleteCountry(countryIndex, TMapOptions::EMapWithCarRouting);
+ m_framework.DeleteCountry(countryIndex, TMapOptions::MapWithCarRouting);
}
break;
case TStatus::ENotDownloaded:
case TStatus::EDownloadFailed:
- m_framework.DownloadCountry(countryIndex, TMapOptions::EMapWithCarRouting);
+ m_framework.DownloadCountry(countryIndex, TMapOptions::MapWithCarRouting);
break;
case TStatus::EInQueue:
case TStatus::EDownloading:
- m_framework.DeleteCountry(countryIndex, TMapOptions::EMapWithCarRouting);
+ m_framework.DeleteCountry(countryIndex, TMapOptions::MapWithCarRouting);
break;
default:
@@ -247,7 +247,7 @@ namespace qt
QString statusString;
LocalAndRemoteSizeT size(0, 0);
- TMapOptions const options = TMapOptions::EMapWithCarRouting;
+ TMapOptions const options = TMapOptions::MapWithCarRouting;
Storage const & st = GetStorage();
switch (m_framework.GetCountryStatus(index))