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-08-27 19:03:49 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:42:37 +0300
commit07761a9f34cb57d8e2a7c4b0f504da6b86f69b58 (patch)
treec3fbf30f0b6d06bb6d39136c4ec3760f62cde27a /storage
parent201d223b626001e4b62e206a37dfe66c3a92cebe (diff)
[desktop] Fix bug with group item click in downloader.
Diffstat (limited to 'storage')
-rw-r--r--storage/country.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/country.hpp b/storage/country.hpp
index d927d72fdc..b1634d5d38 100644
--- a/storage/country.hpp
+++ b/storage/country.hpp
@@ -72,7 +72,7 @@ namespace storage
/// If the logic will be changed, replace GetFile with ForEachFile.
CountryFile const & GetFile() const
{
- ASSERT_EQUAL ( m_files.size(), 1, () );
+ ASSERT_EQUAL ( m_files.size(), 1, (m_name) );
return m_files.front();
}