From adfb65e70eb8e20b89168bae14b3edeb76cb7271 Mon Sep 17 00:00:00 2001 From: ExMix Date: Mon, 15 Jun 2015 12:05:07 +0300 Subject: [PATCH] review fixes --- android/jni/com/mapswithme/maps/Framework.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/jni/com/mapswithme/maps/Framework.cpp b/android/jni/com/mapswithme/maps/Framework.cpp index b6416be81a..1c4ab42f64 100644 --- a/android/jni/com/mapswithme/maps/Framework.cpp +++ b/android/jni/com/mapswithme/maps/Framework.cpp @@ -151,7 +151,7 @@ bool Framework::CreateDrapeEngine(JNIEnv * env, jobject jSurface, int densityDpi p.m_surfaceHeight = factory->GetHeight(); p.m_visualScale = visualScale; - /// @TODO (iOS developers) remove this stuff and create real logic for init and layout core widgets + /// @TODO (android developers) remove this stuff and create real logic for init and layout core widgets m_skin.reset(new gui::Skin(gui::ResolveGuiSkinFile("default"), visualScale)); m_skin->Resize(p.m_surfaceWidth, p.m_surfaceHeight); m_skin->ForEach([&p](gui::EWidget widget, gui::Position const & pos) @@ -181,7 +181,7 @@ void Framework::Resize(int w, int h) m_contextFactory->CastFactory()->UpdateSurfaceSize(); m_work.OnSize(w, h); - /// @TODO (iOS developers) remove this stuff and create real logic for layout core widgets + /// @TODO (android developers) remove this stuff and create real logic for layout core widgets if (m_skin) { m_skin->Resize(w, h);