Kaydet (Commit) e3c70196 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1266437 Unintended comparison to logical negation

Change-Id: Ia4fc4ccbdfe3586afc78a16378ef0b3859308d64
üst b68ecae1
......@@ -1230,7 +1230,7 @@ void X11SalGraphicsImpl::SetROPFillColor( SalROPColor nROPColor )
void X11SalGraphicsImpl::SetXORMode( bool bSet, bool )
{
if( !mbXORMode == bSet )
if (mbXORMode != bSet)
{
mbXORMode = bSet;
mbPenGC = false;
......
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