summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Le Grand <alg@apache.org>2012-11-09 10:12:02 +0000
committerArmin Le Grand <alg@apache.org>2012-11-09 10:12:02 +0000
commit612cefdcf6176b6bb847ce899d89af40ef313a90 (patch)
treea0511b090a225b04a0552e87ea533a50f32eb126
parent55a169e50e09d6db1dad6a645ee0fe363909dae4 (diff)
Wrong comparison with bool corrected
Notes
Notes: merged as: e717d1dcce7f8906311c5ccdbb2326b61a702630
-rwxr-xr-xvcl/source/gdi/regionband.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/regionband.cxx b/vcl/source/gdi/regionband.cxx
index 1375d73a8166..c0e31a6b587b 100755
--- a/vcl/source/gdi/regionband.cxx
+++ b/vcl/source/gdi/regionband.cxx
@@ -1364,7 +1364,7 @@ const char* ImplDbgTestRegionBand(const void* pObj)
}
}
- if ( pSep->mbRemoved > 1 )
+ if ( pSep->mbRemoved )
{
return "Sep-mbRemoved overwrite";
}