From 59e1b64cc1e256cc3bf3a5ce2361263babf1431b Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 31 Oct 2013 12:25:14 +0200 Subject: touch_lo_get_content_size() returns CGSize now Change-Id: Ib90c37c002192cfbed16d63f212212afbfb0eb6b --- .../objective_c/view_controllers/testing_tiles/MLOTestingTile.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ios') 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 -- cgit