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>2015-12-22 14:39:11 +0300
committerVladiMihaylenko <vxmihaylenko@gmail.com>2015-12-22 14:39:11 +0300
commitad2478cbad3572224b2eaa53f534f4652d770eef (patch)
treee4bcd702373f4f479219ee4bbaa3e0bc5a714585 /iphone/Maps/Settings
parentff6929ef64862fca182ab8309a3da432af69bb69 (diff)
[ios] Hid recent track from settings.
Diffstat (limited to 'iphone/Maps/Settings')
-rw-r--r--iphone/Maps/Settings/SettingsViewController.mm28
1 files changed, 14 insertions, 14 deletions
diff --git a/iphone/Maps/Settings/SettingsViewController.mm b/iphone/Maps/Settings/SettingsViewController.mm
index 435156a9cd..c1816abf26 100644
--- a/iphone/Maps/Settings/SettingsViewController.mm
+++ b/iphone/Maps/Settings/SettingsViewController.mm
@@ -67,8 +67,8 @@ typedef NS_ENUM(NSUInteger, Section)
{
case SectionMetrics:
case SectionRouting:
- case SectionMap:
return 2;
+ case SectionMap:
case SectionAd:
case SectionStatistics:
case SectionCalibration:
@@ -116,14 +116,14 @@ typedef NS_ENUM(NSUInteger, Section)
}
case SectionMap:
{
- if (indexPath.row == 0)
- {
- cell = [tableView dequeueReusableCellWithIdentifier:[LinkCell className]];
- LinkCell * linkCell = static_cast<LinkCell *>(cell);
- linkCell.titleLabel.text = L(@"recent_track");
- }
- else
- {
+// if (indexPath.row == 0)
+// {
+// cell = [tableView dequeueReusableCellWithIdentifier:[LinkCell className]];
+// LinkCell * linkCell = static_cast<LinkCell *>(cell);
+// linkCell.titleLabel.text = L(@"recent_track");
+// }
+// else
+// {
cell = [tableView dequeueReusableCellWithIdentifier:[SwitchCell className]];
SwitchCell * customCell = (SwitchCell *)cell;
bool on = true;
@@ -131,7 +131,7 @@ typedef NS_ENUM(NSUInteger, Section)
customCell.switchButton.on = on;
customCell.titleLabel.text = L(@"pref_zoom_title");
customCell.delegate = self;
- }
+// }
break;
}
case SectionRouting:
@@ -250,9 +250,9 @@ Settings::Units unitsForIndex(NSInteger index)
break;
case SectionMap:
- if (indexPath.row == 0)
- [self performSegueWithIdentifier:@"SettingsToRecentTrackSegue" sender:nil];
- break;
+// if (indexPath.row == 0)
+// [self performSegueWithIdentifier:@"SettingsToRecentTrackSegue" sender:nil];
+// break;
case SectionAd:
case SectionCalibration:
case SectionStatistics:
@@ -269,7 +269,7 @@ Settings::Units unitsForIndex(NSInteger index)
case SectionRouting:
return L(@"prefs_group_route");
case SectionMap:
- return L(@"pref_group_map");
+ return L(@"prefs_group_map");
case SectionCalibration:
case SectionAd:
case SectionStatistics: