diff options
| author | Ben Murdoch <benm@google.com> | 2010-07-19 18:38:17 +0100 |
|---|---|---|
| committer | Ben Murdoch <benm@google.com> | 2010-07-19 18:40:46 +0100 |
| commit | ccb5de06714993c28d16f1e5abfcd9f0b1e656fc (patch) | |
| tree | 83e9addda13554a1e923773d3be303a332b076b7 /src/com/android/browser/AddBookmarkPage.java | |
| parent | 5dbfdf9928b782c9325864ed1e8dd0ff22ebc286 (diff) | |
Fix NPEs after merge of d159ec534823b87f9896843e95912b0df8c27e16 from open
source master.
Change-Id: Ief98236102983698e4b753ec9649142761c86607
Diffstat (limited to 'src/com/android/browser/AddBookmarkPage.java')
| -rw-r--r-- | src/com/android/browser/AddBookmarkPage.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/browser/AddBookmarkPage.java b/src/com/android/browser/AddBookmarkPage.java index 104a495c..10c91f8d 100644 --- a/src/com/android/browser/AddBookmarkPage.java +++ b/src/com/android/browser/AddBookmarkPage.java @@ -150,7 +150,7 @@ public class AddBookmarkPage extends Activity { final ContentResolver cr = getContentResolver(); Bookmarks.addBookmark(null, cr, url, title, thumbnail, true); if (touchIconUrl != null) { - new DownloadTouchIcon(cr, url).execute(mTouchIconUrl); + new DownloadTouchIcon(AddBookmarkPage.this, cr, url).execute(mTouchIconUrl); } mMessage.arg1 = 1; } catch (IllegalStateException e) { |
