am 73ba7150: Merge "Delete calendar properly on commanded wipe" into honeycomb

* commit '73ba71506a542ac6fd6463f2cf1efea1569bbcc4':
  Delete calendar properly on commanded wipe
This commit is contained in:
Marc Blank 2011-02-01 06:52:28 -08:00 committed by Android Git Automerger
commit 4c0ae95fbe
1 changed files with 6 additions and 2 deletions

View File

@ -38,6 +38,7 @@ import android.content.Entity.NamedContentValues;
import android.content.EntityIterator;
import android.content.OperationApplicationException;
import android.database.Cursor;
import android.database.DatabaseUtils;
import android.net.Uri;
import android.os.RemoteException;
import android.provider.Calendar;
@ -192,8 +193,11 @@ public class CalendarSyncAdapter extends AbstractSyncAdapter {
@Override
public void wipe() {
// Delete the calendar associated with this account
mContentResolver.delete(Calendars.CONTENT_URI, CALENDAR_SELECTION,
new String[] {mEmailAddress, Email.EXCHANGE_ACCOUNT_MANAGER_TYPE});
// CalendarProvider2 does NOT handle selection arguments in deletions
mContentResolver.delete(Calendars.CONTENT_URI, Calendars._SYNC_ACCOUNT +
"=" + DatabaseUtils.sqlEscapeString(mEmailAddress) + " AND " +
Calendars._SYNC_ACCOUNT_TYPE + "=" +
DatabaseUtils.sqlEscapeString(Email.EXCHANGE_ACCOUNT_MANAGER_TYPE), null);
}
@Override