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:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2016-12-06 16:15:30 +0300
committerИлья Гречухин <i.grechuhin@gmail.com>2016-12-07 11:30:15 +0300
commitaec4b2ccf5435d838f50fb5267bac66e99a30ac3 (patch)
tree8e522d0ee5172288fe0442e12137fad1daffa046 /iphone/Maps/Settings
parent3cae3625dddac704896a8d547fcbb86378eccccd (diff)
[ios] Fixed deprecated warnings and smth else.
Diffstat (limited to 'iphone/Maps/Settings')
-rw-r--r--iphone/Maps/Settings/SwitchCell.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/iphone/Maps/Settings/SwitchCell.h b/iphone/Maps/Settings/SwitchCell.h
index ca1803e6bb..8dfb1ad1c4 100644
--- a/iphone/Maps/Settings/SwitchCell.h
+++ b/iphone/Maps/Settings/SwitchCell.h
@@ -9,9 +9,9 @@
@interface SwitchCell : MWMTableViewCell
-@property (weak, nonatomic) IBOutlet UILabel * titleLabel;
-@property (weak, nonatomic) IBOutlet UISwitch * switchButton;
+@property(weak, nonatomic) IBOutlet UILabel * titleLabel;
+@property(weak, nonatomic) IBOutlet UISwitch * switchButton;
-@property (weak) id<SwitchCellDelegate> delegate;
+@property(weak, nonatomic) id<SwitchCellDelegate> delegate;
@end