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:
authorIlya Grechuhin <i.grechuhin@mapswithme.com>2015-05-22 09:30:16 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:48:14 +0300
commit29311d27a8a4c46a70e0997499f02683b955dca4 (patch)
tree7819efc39bef46b20402db370e6b91c33df44856 /iphone/Maps/DownloaderParentVC.h
parent9e8a13cb11f11660fd01b6bd3afcdd066cd60e94 (diff)
[ios] Fix project config.
Diffstat (limited to 'iphone/Maps/DownloaderParentVC.h')
-rw-r--r--iphone/Maps/DownloaderParentVC.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/iphone/Maps/DownloaderParentVC.h b/iphone/Maps/DownloaderParentVC.h
index 56c1337e5f..f635b3daeb 100644
--- a/iphone/Maps/DownloaderParentVC.h
+++ b/iphone/Maps/DownloaderParentVC.h
@@ -25,7 +25,7 @@ using namespace storage;
@interface DownloaderParentVC : ViewController <MapCellDelegate, UIActionSheetDelegate, UIAlertViewDelegate, UITableViewDataSource, UITableViewDelegate>
-- (NSString *)formattedMapSize:(size_t)size;
+- (NSString *)formattedMapSize:(uint64_t)size;
- (BOOL)canDownloadSelectedMap;
- (UIActionSheet *)actionSheetToCancelDownloadingSelectedMap;
@@ -33,7 +33,8 @@ using namespace storage;
@property (nonatomic) UITableView * tableView;
-@property (nonatomic) NSInteger selectedPosition;
+// CountryTree methods accept int. It should be enough to store all countries.
+@property (nonatomic) int selectedPosition;
@property (nonatomic) TMapOptions selectedInActionSheetOptions;
@property (nonatomic) NSMutableDictionary * actionSheetActions;
@@ -41,7 +42,7 @@ using namespace storage;
// virtual
- (NSString *)parentTitle;
- (NSString *)selectedMapName;
-- (size_t)selectedMapSizeWithOptions:(TMapOptions)options;
+- (uint64_t)selectedMapSizeWithOptions:(TMapOptions)options;
- (TStatus)selectedMapStatus;
- (TMapOptions)selectedMapOptions;
- (void)performAction:(DownloaderAction)action withSizeCheck:(BOOL)check;