David Hedberg : shell32: Replace bitwise XOR with a contextually more proper operator.

Alexandre Julliard julliard at winehq.org
Thu Oct 21 10:50:49 CDT 2010


Module: wine
Branch: master
Commit: aefe637b56c73b963550dda0deaadeece312e2a5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=aefe637b56c73b963550dda0deaadeece312e2a5

Author: David Hedberg <david.hedberg at gmail.com>
Date:   Thu Oct 21 13:19:45 2010 +0200

shell32: Replace bitwise XOR with a contextually more proper operator.

---

 dlls/shell32/ebrowser.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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 @@ static void update_panestate(ExplorerBrowserImpl *This)
     else
         show_navpane = FALSE;
 
-    if(This->navpane.show ^ show_navpane)
+    if(This->navpane.show != show_navpane)
     {
         update_layout(This);
         size_panes(This);




More information about the wine-cvs mailing list