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:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-11-16 16:37:09 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2017-11-17 11:59:06 +0300
commit282f46201cfc3b32fc999e675a00601ab2bf1d08 (patch)
tree7a05176a08115f5561fc1d5397a569ad067ee043 /android/src/com/mapswithme/maps/search/SearchFragment.java
parentde99faf3dcbb9fbd26b427193e92e0e01d91cb13 (diff)
[booking][jni] jni layer for booking online filter
Diffstat (limited to 'android/src/com/mapswithme/maps/search/SearchFragment.java')
-rw-r--r--android/src/com/mapswithme/maps/search/SearchFragment.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/src/com/mapswithme/maps/search/SearchFragment.java b/android/src/com/mapswithme/maps/search/SearchFragment.java
index 2a3c286a82..9fc62ea46a 100644
--- a/android/src/com/mapswithme/maps/search/SearchFragment.java
+++ b/android/src/com/mapswithme/maps/search/SearchFragment.java
@@ -585,7 +585,7 @@ public class SearchFragment extends BaseMwmFragment
SearchEngine.searchInteractive(
query, !TextUtils.isEmpty(mInitialLocale)
? mInitialLocale : com.mapswithme.util.Language.getKeyboardLocale(),
- mLastQueryTimestamp, false /* isMapAndTable */, hotelsFilter);
+ mLastQueryTimestamp, false /* isMapAndTable */, hotelsFilter, null /* bookingParams */);
SearchEngine.showAllResults(query);
Utils.navigateToParent(getActivity());
@@ -629,7 +629,7 @@ public class SearchFragment extends BaseMwmFragment
if (isInteractiveSearch())
{
SearchEngine.searchInteractive(
- getQuery(), mLastQueryTimestamp, true /* isMapAndTable */, hotelsFilter);
+ getQuery(), mLastQueryTimestamp, true /* isMapAndTable */, hotelsFilter, null /* bookingParams */);
}
else
{