summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-31 12:25:14 +0200
committerJan Holesovsky <kendy@collabora.com>2013-11-15 16:51:57 +0100
commit59e1b64cc1e256cc3bf3a5ce2361263babf1431b (patch)
tree15ca54d594d3ace9452ed49853527b8ee8165a75 /ios
parent814ca0766e52d60d21abe76a4a24e9b46a721689 (diff)
touch_lo_get_content_size() returns CGSize now
Change-Id: Ib90c37c002192cfbed16d63f212212afbfb0eb6b
Diffstat (limited to 'ios')
-rw-r--r--ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m
index f709fc420be8..14428ceba00b 100644
--- a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m
+++ b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m
@@ -60,8 +60,8 @@
CGContextRestoreGState(context);
- MLOContentSize size = touch_lo_get_content_size();
- NSLog(@"MLOContentSize: width=%lld, height=%lld",size.width, size.height);
+ CGSize size = touch_lo_get_content_size();
+ NSLog(@"touch_lo_get_content_size: width=%f, height=%f",size.width, size.height);
}
@end