From 0cfd9be1c18558c8d5f3480991396aa632d3725d Mon Sep 17 00:00:00 2001 From: rachytski Date: Sun, 24 Jul 2011 14:05:44 +0300 Subject: [PATCH] [iOS] fixed compilation after Framework renaming. --- android/jni/android_framework.cpp | 1 + iphone/Maps/Classes/MapViewController.mm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/android/jni/android_framework.cpp b/android/jni/android_framework.cpp index e3e19caf65..fd7c8080c0 100644 --- a/android/jni/android_framework.cpp +++ b/android/jni/android_framework.cpp @@ -5,6 +5,7 @@ #include "../../base/logging.hpp" #include "../../map/render_policy_st.hpp" +#include "../../map/tiling_render_policy_st.hpp" #include "../../std/shared_ptr.hpp" #include "../../std/bind.hpp" #include "../../map/framework.hpp" diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index 3ac0a332f2..9dfd583f9c 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -12,7 +12,7 @@ #include "../../map/drawer_yg.hpp" #include "../../storage/storage.hpp" -typedef FrameWork framework_t; +typedef Framework framework_t; @implementation MapViewController @@ -136,7 +136,7 @@ storage::Storage m_storage; if (!res) m_framework->SetMaxWorldRect(); - m_framework->UpdateNow(); + m_framework->Invalidate(); m_framework->initializeGL([(EAGLView*)self.view renderContext], resourceManager);