summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3')
-rw-r--r--src/com/android/launcher3/DynamicGrid.java4
-rw-r--r--src/com/android/launcher3/LauncherApplication.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/com/android/launcher3/DynamicGrid.java b/src/com/android/launcher3/DynamicGrid.java
index fe0897c8e..a01dfa1c8 100644
--- a/src/com/android/launcher3/DynamicGrid.java
+++ b/src/com/android/launcher3/DynamicGrid.java
@@ -68,9 +68,9 @@ public class DynamicGrid {
} else if (LauncherApplication.LAUNCHER_BACKUP_SHORTCUT_ENABLED) {
fourByFourDefaultLayout = R.xml.cm_with_backup_default_workspace;
} else if (LauncherApplication.LAUNCHER_MMX_SHORTCUT_ENABLED) {
- fourByFourDefaultLayout = R.xml.micromax_default_workspace;
+ fourByFourDefaultLayout = R.xml.mmx_default_workspace;
} else if (LauncherApplication.LAUNCHER_SFR_SHORTCUT_ENABLED) {
- fourByFourDefaultLayout = R.xml.smartfren_default_workspace;
+ fourByFourDefaultLayout = R.xml.srf_default_workspace;
}
DEFAULT_ICON_SIZE_PX = pxFromDp(DEFAULT_ICON_SIZE_DP, dm);
diff --git a/src/com/android/launcher3/LauncherApplication.java b/src/com/android/launcher3/LauncherApplication.java
index 689f54d1f..751ff7930 100644
--- a/src/com/android/launcher3/LauncherApplication.java
+++ b/src/com/android/launcher3/LauncherApplication.java
@@ -37,9 +37,9 @@ public class LauncherApplication extends Application {
LAUNCHER_BACKUP_SHORTCUT_ENABLED =
getResources().getBoolean(R.bool.config_launcher_show_backup_shortcut);
LAUNCHER_MMX_SHORTCUT_ENABLED =
- getResources().getBoolean(R.bool.config_micromax_enabled);
+ getResources().getBoolean(R.bool.config_mmx_enabled);
LAUNCHER_SFR_SHORTCUT_ENABLED =
- getResources().getBoolean(R.bool.config_smartfren_enabled);
+ getResources().getBoolean(R.bool.config_srf_enabled);
LauncherAppState.setApplicationContext(this);
LauncherAppState.getInstance();
}