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
path: root/qt
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2016-04-06 18:24:09 +0300
committerAlex Zolotarev <alex@maps.me>2016-04-06 18:24:09 +0300
commit617c1f7aae0fd596e6ac5d0e1842b220f4284ac7 (patch)
treef1d4bbeba278ed78c2093de2db4dd3bb3c8e5ccb /qt
parentdf629f28ef077d7d2241735274c61c318e1756c6 (diff)
parent764772641c89aeb22b01283d3e7d11ed7b8b0e84 (diff)
Merge pull request #2796 from bykoianko/master-map-size-overflow
Exchanging size_t to uint64_t for mwm and group mwm size in bytes.
Diffstat (limited to 'qt')
-rw-r--r--qt/draw_widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/draw_widget.cpp b/qt/draw_widget.cpp
index 882c8d5191..23fc076c14 100644
--- a/qt/draw_widget.cpp
+++ b/qt/draw_widget.cpp
@@ -129,7 +129,7 @@ void DrawWidget::UpdateCountryStatus(storage::TCountryId const & countryId)
auto status = m_framework->Storage().CountryStatusEx(countryId);
- uint64_t sizeInBytes = 0;
+ storage::TMwmSize sizeInBytes = 0;
if (!countryId.empty())
{
storage::NodeAttrs nodeAttrs;