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:
authorAlex Zolotarev <deathbaba@gmail.com>2011-10-23 03:54:13 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:26:34 +0300
commita062fb71068e973a9f875bcfc4a511a65f02f4af (patch)
tree12b62c04613d8f5d2614ec7f27c854e3d9a3cc79 /iphone/Maps/Classes/EAGLView.mm
parent34533b995285f7c5a80932e4448251f144d4613b (diff)
[ios] Cleaned up Objective C code
Diffstat (limited to 'iphone/Maps/Classes/EAGLView.mm')
-rw-r--r--iphone/Maps/Classes/EAGLView.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/iphone/Maps/Classes/EAGLView.mm b/iphone/Maps/Classes/EAGLView.mm
index e09b4e6c0e..cf0cb9f7ad 100644
--- a/iphone/Maps/Classes/EAGLView.mm
+++ b/iphone/Maps/Classes/EAGLView.mm
@@ -201,7 +201,7 @@ bool _inRepaint = false;
{
CGFloat const scale = self.contentScaleFactor;
CGSize const s = self.frame.size;
- [self.controller onResize:s.width * scale withHeight:s.height * scale];
+ [controller onResize:s.width * scale withHeight:s.height * scale];
[self onSize:s.width * scale withHeight:s.height * scale];
}