Bug 695595 - Fix bug introduced in f8179ee6846a [r=mfinkle]

This commit is contained in:
Kartikaya Gupta 2011-10-18 12:53:33 -04:00
Родитель b4de11a0ea
Коммит 3d1008c0f8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -78,7 +78,7 @@ public class GeckoBookmarks extends ListActivity {
mCursor.moveToPosition(position);
String spec = mCursor.getString(mCursor.getColumnIndex(Browser.BookmarkColumns.URL));
Log.i(LOG_NAME, "clicked: " + spec);
Intent intent = new Intent(this, GeckoApp.class);
Intent intent = new Intent(this, GeckoApp.mAppContext.getClass());
intent.setAction(Intent.ACTION_VIEW);
intent.setData(Uri.parse(spec));
startActivity(intent);