commit | aefe637b56c73b963550dda0deaadeece312e2a5 | [log] [tgz] |
---|---|---|
author | David Hedberg <david.hedberg@gmail.com> | Thu Oct 21 13:19:45 2010 +0200 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Oct 21 16:16:00 2010 +0200 |
tree | 57193e8df0a59436474495d14f58b4a6484c2486 | |
parent | c143f805cd883ef5dc8ce95e2c7c15b3fd8a508f [diff] [blame] |
shell32: Replace bitwise XOR with a contextually more proper operator.
diff --git a/dlls/shell32/ebrowser.c b/dlls/shell32/ebrowser.c index 9cee1f0..87ff578 100644 --- a/dlls/shell32/ebrowser.c +++ b/dlls/shell32/ebrowser.c
@@ -472,7 +472,7 @@ else show_navpane = FALSE; - if(This->navpane.show ^ show_navpane) + if(This->navpane.show != show_navpane) { update_layout(This); size_panes(This);