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:
authorKirill Zhdanovich <kzhdanovich@gmail.com>2013-01-11 14:20:19 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:48:44 +0300
commit17106a22a4d18ecc9cca26b56643d9fc251e5b8e (patch)
tree051c48fd5ad4389a461bab2c00e1749e69fd8895 /iphone/Maps/Classes/MapsAppDelegate.h
parentfa67eda1d5d1b9502469160c995d01be24ca2350 (diff)
[IOS] Handling kmz/kml files openning.
Review Fix code review fix
Diffstat (limited to 'iphone/Maps/Classes/MapsAppDelegate.h')
-rw-r--r--iphone/Maps/Classes/MapsAppDelegate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/iphone/Maps/Classes/MapsAppDelegate.h b/iphone/Maps/Classes/MapsAppDelegate.h
index 8cdf891332..4e6b73ea84 100644
--- a/iphone/Maps/Classes/MapsAppDelegate.h
+++ b/iphone/Maps/Classes/MapsAppDelegate.h
@@ -4,13 +4,14 @@
@class SettingsManager;
@class LocationManager;
-@interface MapsAppDelegate : NSObject <UIApplicationDelegate>
+@interface MapsAppDelegate : NSObject <UIApplicationDelegate, UIAlertViewDelegate>
{
SettingsManager * m_settingsManager;
NSInteger m_standbyCounter;
NSInteger m_activeDownloadsCounter;
UINavigationController * m_navController;
UIWindow * m_window;
+ UIAlertView * m_loadingAlertView;
}
@property (nonatomic, retain) IBOutlet MapViewController * m_mapViewController;