Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
packages_apps_Browser
Commits
7431a694
Commit
7431a694
authored
13 years ago
by
Bart Sears
Committed by
Android (Google) Code Review
13 years ago
Browse files
Options
Download
Plain Diff
Merge "Fix NPE at startup" into ics-mr1
parents
6cfe9772
b8337131
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/com/android/browser/Controller.java
src/com/android/browser/Controller.java
+1
-1
No files found.
src/com/android/browser/Controller.java
View file @
7431a694
...
...
@@ -1425,7 +1425,7 @@ public class Controller
return
;
}
MenuItem
dest
=
menu
.
findItem
(
R
.
id
.
stop_reload_menu_id
);
MenuItem
src
=
tab
.
inPageLoad
()
?
MenuItem
src
=
((
tab
!=
null
)
&&
tab
.
inPageLoad
()
)
?
menu
.
findItem
(
R
.
id
.
stop_menu_id
):
menu
.
findItem
(
R
.
id
.
reload_menu_id
);
if
(
src
!=
null
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment