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

This commit is contained in:
David Hedberg 2010-10-21 13:19:45 +02:00 committed by Alexandre Julliard
parent c143f805cd
commit aefe637b56
1 changed files with 1 additions and 1 deletions

View File

@ -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);