diff --git a/android/jni/com/mapswithme/maps/SponsoredHotel.cpp b/android/jni/com/mapswithme/maps/SponsoredHotel.cpp index 1eb94e0e1b..cabe3fe119 100644 --- a/android/jni/com/mapswithme/maps/SponsoredHotel.cpp +++ b/android/jni/com/mapswithme/maps/SponsoredHotel.cpp @@ -6,8 +6,7 @@ #include "map/place_page_info.hpp" #include "std/bind.hpp" - -using namespace std::chrono; +#include "std/chrono.hpp" namespace { diff --git a/android/src/com/mapswithme/maps/widget/placepage/GalleryAdapter.java b/android/src/com/mapswithme/maps/widget/placepage/GalleryAdapter.java index a7ec45ea17..ffcce5c2fd 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/GalleryAdapter.java +++ b/android/src/com/mapswithme/maps/widget/placepage/GalleryAdapter.java @@ -57,7 +57,7 @@ class GalleryAdapter extends RecyclerView.Adapter public void onBindViewHolder(ViewHolder holder, int position) { Item item = mLoadedItems.get(position); - item.setShowMore(position == MAX_COUNT - 1); + item.setShowMore(position == MAX_COUNT - 1 && mItems.size() > MAX_COUNT); holder.bind(item, position); } diff --git a/std/chrono.hpp b/std/chrono.hpp index 1ac4f3f731..3aadbf8ae6 100644 --- a/std/chrono.hpp +++ b/std/chrono.hpp @@ -17,6 +17,7 @@ using std::chrono::seconds; using std::chrono::steady_clock; using std::chrono::system_clock; using std::chrono::time_point; +using std::chrono::time_point_cast; #ifdef DEBUG_NEW #define new DEBUG_NEW