Skip to content

Commit

Permalink
fixed compile errors from import errors
Browse files Browse the repository at this point in the history
fixed compile errors from new target sdk 11
  • Loading branch information
chanderspechetty committed Nov 24, 2011
1 parent 8e57d68 commit 5080968
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/imaginea/android/sugarcrm/EditDetailsActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public void onCreate(Bundle savedInstanceState) {
// setContents();

mTask = new LoadContentTask();
mTask.execute(null);
mTask.execute(null, null, null);
}

/** {@inheritDoc} */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.net.Uri;
Expand Down Expand Up @@ -63,6 +64,7 @@
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
Expand Down

0 comments on commit 5080968

Please sign in to comment.