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:
-rw-r--r--iphone/Maps/Settings/Preferences.mm11
1 files changed, 4 insertions, 7 deletions
diff --git a/iphone/Maps/Settings/Preferences.mm b/iphone/Maps/Settings/Preferences.mm
index 984730ba77..5273b6cf1f 100644
--- a/iphone/Maps/Settings/Preferences.mm
+++ b/iphone/Maps/Settings/Preferences.mm
@@ -5,17 +5,13 @@
#include "../../platform/settings.hpp"
+//********************* Helper delegate to handle async dialog message ******************
@interface PrefDelegate : NSObject
-{
-}
-
-@property (nonatomic, retain) id m_controller;
-
+@property (nonatomic, assign) id m_controller;
@end
-@implementation PrefDelegate
+@implementation PrefDelegate
@synthesize m_controller;
-
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
// User decided to override Imperial system with metric one
@@ -27,6 +23,7 @@
[self autorelease];
}
@end
+//***************************************************************************************
@implementation Preferences