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:
authorvng <viktor.govako@gmail.com>2012-07-09 08:51:50 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:40:46 +0300
commit83a0276371e741f18bbb7ca8a57825ff88ebe2c5 (patch)
treebee948801de7ff0fbe55c86a3af9402c3739052e /qt/update_dialog.cpp
parenta4199f80edc58931dcf020a5626f186c66f368bc (diff)
Rename Framework::DeleteMap to DeleteCountry (common signature with other functions).
Diffstat (limited to 'qt/update_dialog.cpp')
-rw-r--r--qt/update_dialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qt/update_dialog.cpp b/qt/update_dialog.cpp
index eab6537409..2b458a62e8 100644
--- a/qt/update_dialog.cpp
+++ b/qt/update_dialog.cpp
@@ -135,7 +135,7 @@ namespace qt
st.DownloadCountry(countryIndex);
if (res == btns[1])
- m_framework.DeleteMap(countryIndex);
+ m_framework.DeleteCountry(countryIndex);
}
break;
@@ -149,7 +149,7 @@ namespace qt
ask.setDefaultButton(QMessageBox::No);
if (ask.exec() == QMessageBox::Yes)
- m_framework.DeleteMap(countryIndex);
+ m_framework.DeleteCountry(countryIndex);
}
break;
@@ -160,7 +160,7 @@ namespace qt
case EInQueue:
case EDownloading:
- m_framework.DeleteMap(countryIndex);
+ m_framework.DeleteCountry(countryIndex);
break;
}
}