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/search
diff options
context:
space:
mode:
authorkirillcpp <kzhdanovich@gmail.com>2012-12-04 19:18:00 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:47:14 +0300
commit0f64b44b52a0bdbb9b18b954a85c31d244a91f64 (patch)
tree1420485bf44f2acf54899e0cd1bf2d6f997cca3f /search
parent30cd80f3b202ca455427d502620be49d4f039294 (diff)
Cashes added.
params.cpp fix. UISearchBar height fix
Diffstat (limited to 'search')
-rw-r--r--search/params.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/search/params.cpp b/search/params.cpp
index e28b7eab3b..0de17807e9 100644
--- a/search/params.cpp
+++ b/search/params.cpp
@@ -38,7 +38,8 @@ bool SearchParams::IsEqualCommon(SearchParams const & rhs) const
// do not compare m_mode
return (m_query == rhs.m_query &&
m_inputLanguageCode == rhs.m_inputLanguageCode &&
- m_validPos == rhs.m_validPos);
+ m_validPos == rhs.m_validPos &&
+ m_searchMode == rhs.m_searchMode);
}
string DebugPrint(SearchParams const & params)