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:
authorIgor Khmurets <subzero@mapswithme.com>2013-11-14 13:36:36 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:06:22 +0300
commit17ea8073455c924dc729fb24358536f9cf458996 (patch)
treecc7fdf48fb2c20d51c985c8870a08db0e58ef90c /iphone/Maps/Classes/MapsAppDelegate.h
parenta2a286ad99dfdab036fd53ef693659c4b36ed099 (diff)
[ios] MapsAppDelegate changes
Diffstat (limited to 'iphone/Maps/Classes/MapsAppDelegate.h')
-rw-r--r--iphone/Maps/Classes/MapsAppDelegate.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/iphone/Maps/Classes/MapsAppDelegate.h b/iphone/Maps/Classes/MapsAppDelegate.h
index 8cb723b780..6bd0d48183 100644
--- a/iphone/Maps/Classes/MapsAppDelegate.h
+++ b/iphone/Maps/Classes/MapsAppDelegate.h
@@ -1,16 +1,17 @@
#import <UIKit/UIKit.h>
+#import "NavigationController.h"
@class MapViewController;
@class SettingsManager;
@class LocationManager;
-@interface MapsAppDelegate : NSObject <UIApplicationDelegate, UIAlertViewDelegate, UINavigationControllerDelegate>
+@interface MapsAppDelegate : NSObject <UIApplicationDelegate, UIAlertViewDelegate>
{
SettingsManager * m_settingsManager;
NSInteger m_standbyCounter;
NSInteger m_activeDownloadsCounter;
UIBackgroundTaskIdentifier m_backgroundTask;
- UINavigationController * m_navController;
+ NavigationController * m_navController;
UIWindow * m_window;
UIAlertView * m_loadingAlertView;
BOOL m_didOpenedWithUrl;