forked from organicmaps/organicmaps-tmp
review fixes
This commit is contained in:
parent
39932b1cfb
commit
ab78557640
5 changed files with 7 additions and 7 deletions
|
@ -244,7 +244,7 @@ jobject ToJavaResult(Result & result, bool isLocalAdsCustomer, bool hasPosition,
|
|||
env->ReleaseIntArrayElements(ranges.get(), rawArr, 0);
|
||||
|
||||
ms::LatLon ll = ms::LatLon::Zero();
|
||||
std::string distance;
|
||||
string distance;
|
||||
if (result.HasPoint())
|
||||
{
|
||||
ll = MercatorBounds::ToLatLon(result.GetFeatureCenter());
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
namespace
|
||||
{
|
||||
using TCuisine = pair<std::string, std::string>;
|
||||
using TCuisine = std::pair<std::string, std::string>;
|
||||
osm::EditableMapObject g_editableMapObject;
|
||||
|
||||
jclass g_featureCategoryClazz;
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
#include "drape/oglcontext.hpp"
|
||||
|
||||
#include <GLES2/gl2.h>
|
||||
#include <EGL/egl.h>
|
||||
#include <GLES2/gl2.h>
|
||||
|
||||
namespace android
|
||||
{
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include <algorithm>
|
||||
|
||||
#include <EGL/egl.h>
|
||||
#include <android/native_window_jni.h>
|
||||
#include <android/native_window.h>
|
||||
#include <android/native_window_jni.h>
|
||||
|
||||
namespace android
|
||||
{
|
||||
|
@ -239,7 +239,7 @@ bool AndroidOGLContextFactory::createWindowSurface()
|
|||
{
|
||||
LOG(LDEBUG, ("Backbuffer format: RGB8"));
|
||||
}
|
||||
ASSERT(count > 0, ("Didn't std::find any configs."));
|
||||
ASSERT(count > 0, ("Didn't find any configs."));
|
||||
|
||||
std::sort(&configs[0], &configs[count], ConfigComparator(m_display));
|
||||
for (int i = 0; i < count; ++i)
|
||||
|
|
|
@ -29,8 +29,8 @@ namespace android
|
|||
bool HasAvailableSpaceForWriting(uint64_t size) const;
|
||||
void RunOnGuiThread(TFunctor const & fn);
|
||||
|
||||
void SendPushWooshTag(std::string const & tag, vector<std::string> const & values);
|
||||
void SendMarketingEvent(std::string const & tag, map<std::string, std::string> const & params);
|
||||
void SendPushWooshTag(std::string const & tag, std::vector<std::string> const & values);
|
||||
void SendMarketingEvent(std::string const & tag, std::map<std::string, std::string> const & params);
|
||||
|
||||
static Platform & Instance();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue