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:
Diffstat (limited to 'search/mode.cpp')
-rw-r--r--search/mode.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/search/mode.cpp b/search/mode.cpp
index 59c7eb751b..bd2bdc8c81 100644
--- a/search/mode.cpp
+++ b/search/mode.cpp
@@ -6,9 +6,10 @@ string DebugPrint(Mode mode)
{
switch (mode)
{
- case Mode::Viewport: return "Viewport";
case Mode::Everywhere: return "Everywhere";
- case Mode::World: return "World";
+ case Mode::Viewport: return "Viewport";
+ case Mode::Downloader: return "Downloader";
+ case Mode::Count: return "Count";
}
return "Unknown";
}