summaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/setupwizard/setup/OtherSettingsPage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/cyanogenmod/setupwizard/setup/OtherSettingsPage.java')
-rw-r--r--src/com/cyanogenmod/setupwizard/setup/OtherSettingsPage.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/com/cyanogenmod/setupwizard/setup/OtherSettingsPage.java b/src/com/cyanogenmod/setupwizard/setup/OtherSettingsPage.java
index 7ed23dc..5c0b91d 100644
--- a/src/com/cyanogenmod/setupwizard/setup/OtherSettingsPage.java
+++ b/src/com/cyanogenmod/setupwizard/setup/OtherSettingsPage.java
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2015 The CyanogenMod Project
+ * Copyright (C) 2017 The LineageOS Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -62,11 +63,12 @@ public class OtherSettingsPage extends SetupPage {
@Override
public int getTitleResId() {
- if (SetupWizardUtils.hasGMS(mContext)) {
- return R.string.setup_other;
- } else {
- return R.string.setup_location;
- }
+ return R.string.setup_location;
+ }
+
+ @Override
+ public int getIconResId() {
+ return R.drawable.ic_location;
}
public static class OtherSettingsFragment extends SetupPageFragment {