Commit aefe637b authored by David Hedberg's avatar David Hedberg Committed by Alexandre Julliard

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

parent c143f805
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment