author | Wes Johnston <wjohnston@mozilla.com> |
Wed, 06 Jun 2012 14:45:41 -0700 | |
changeset 96017 | d529eceaccfaadfc1931375a6768bbac43405320 |
parent 96016 | eb7306640e5f3b292ce07e8fec1a7dda518455d5 |
child 96018 | 8061c23ff32b128ea63b50b2428dfd644f097ba9 |
push id | 22869 |
push user | emorley@mozilla.com |
push date | Thu, 07 Jun 2012 09:35:19 +0000 |
treeherder | mozilla-central@3933384d8315 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | bustage |
bugs | 760708 |
milestone | 16.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/mobile/android/base/GeckoApp.java +++ b/mobile/android/base/GeckoApp.java @@ -1270,17 +1270,17 @@ abstract public class GeckoApp } GeckoAppShell.sendEventToGecko(GeckoEvent.createBroadcastEvent("Accessibility:Settings", ret.toString())); } }); } else if (event.equals("Shortcut:Remove")) { final String url = message.getString("url"); final String title = message.getString("title"); - final String title = message.getString("shortcutType"); + final String type = message.getString("shortcutType"); GeckoAppShell.removeShortcut(title, url, type); } } catch (Exception e) { Log.e(LOGTAG, "Exception handling message \"" + event + "\":", e); } } public void showAboutHome() {