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

David Hedberg david.hedberg at gmail.com
Thu Oct 21 06:19:45 CDT 2010


For clarity. Discussed (briefly) on wine-devel,
http://www.winehq.org/pipermail/wine-devel/2010-August/086239.html

---
 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 fed9ace..fb27849 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);
-- 
1.7.3.1




More information about the wine-patches mailing list