summaryrefslogtreecommitdiffstats
path: root/src/com/android/calendar/DeleteEventHelper.java
diff options
context:
space:
mode:
authorErik <roboerik@android.com>2010-08-16 12:43:13 -0700
committerErik <roboerik@android.com>2010-08-16 12:43:13 -0700
commitfbce65e53c7a111955f638db5bf8bee35381e5b7 (patch)
treeb093a051a6b0ae3086c3bf657dbf5cc989b4468e /src/com/android/calendar/DeleteEventHelper.java
parent2bebde787f9490408ceaf14166de4b016a10daf1 (diff)
downloadandroid_packages_apps_Calendar-fbce65e53c7a111955f638db5bf8bee35381e5b7.tar.gz
android_packages_apps_Calendar-fbce65e53c7a111955f638db5bf8bee35381e5b7.tar.bz2
android_packages_apps_Calendar-fbce65e53c7a111955f638db5bf8bee35381e5b7.zip
Moved EditEvent into a sub package.
Change-Id: I4bba4ec6651ec90f8d0a7c83c76340ed080178f0
Diffstat (limited to 'src/com/android/calendar/DeleteEventHelper.java')
-rw-r--r--src/com/android/calendar/DeleteEventHelper.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/com/android/calendar/DeleteEventHelper.java b/src/com/android/calendar/DeleteEventHelper.java
index dbeabb61..60a3ef2a 100644
--- a/src/com/android/calendar/DeleteEventHelper.java
+++ b/src/com/android/calendar/DeleteEventHelper.java
@@ -16,6 +16,8 @@
package com.android.calendar;
+import com.android.calendar.event.EditEventHelper;
+
import android.app.Activity;
import android.app.AlertDialog;
import android.content.ContentUris;
@@ -68,9 +70,9 @@ public class DeleteEventHelper {
* These are the corresponding indices into the array of strings
* "R.array.delete_repeating_labels" in the resource file.
*/
- static final int DELETE_SELECTED = 0;
- static final int DELETE_ALL_FOLLOWING = 1;
- static final int DELETE_ALL = 2;
+ public static final int DELETE_SELECTED = 0;
+ public static final int DELETE_ALL_FOLLOWING = 1;
+ public static final int DELETE_ALL = 2;
private int mWhichDelete;
private AlertDialog mAlertDialog;