summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Chan <mchan@android.com>2010-07-15 18:26:50 -0700
committerMichael Chan <mchan@android.com>2010-07-16 17:25:43 -0700
commit2c477fc6410f4da175d8a9856561aab230ff1c19 (patch)
treec7eaa68fc2123c8309489aa687bfd7d4db9ae887 /src
parente46ba90fb3879df33768374cf593936c0f23745f (diff)
downloadandroid_packages_apps_Calendar-2c477fc6410f4da175d8a9856561aab230ff1c19.tar.gz
android_packages_apps_Calendar-2c477fc6410f4da175d8a9856561aab230ff1c19.tar.bz2
android_packages_apps_Calendar-2c477fc6410f4da175d8a9856561aab230ff1c19.zip
Added Manage Calendar to ActionBar
Change-Id: Iff849300f9028dc2b17f354b6e8399e2736b9fdb
Diffstat (limited to 'src')
-rw-r--r--src/com/android/calendar/AllInOneActivity.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/android/calendar/AllInOneActivity.java b/src/com/android/calendar/AllInOneActivity.java
index 094dc860..b077224d 100644
--- a/src/com/android/calendar/AllInOneActivity.java
+++ b/src/com/android/calendar/AllInOneActivity.java
@@ -127,6 +127,9 @@ public class AllInOneActivity extends Activity implements OnSharedPreferenceChan
case R.id.action_settings:
mController.sendEvent(this, EventType.LAUNCH_SETTINGS, null, null, 0, 0);
return true;
+ case R.id.action_manage_calendars:
+ mController.sendEvent(this, EventType.LAUNCH_MANAGE_CALENDARS, null, null, 0, 0);
+ return true;
default:
return false;
}