diff options
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/dlged/dlgedview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/dlged/dlgedview.cxx b/basctl/source/dlged/dlgedview.cxx index afb76e242f71..5fe5914746ea 100644 --- a/basctl/source/dlged/dlgedview.cxx +++ b/basctl/source/dlged/dlgedview.cxx @@ -129,7 +129,7 @@ SdrObject* impLocalHitCorrection(SdrObject* pRetval, const Point& rPnt, sal_uInt { bool bExcludeInner(false); - if(nullptr != dynamic_cast< DlgEdForm* >(pRetval)) + if(dynamic_cast< DlgEdForm* >(pRetval) != nullptr) { // from DlgEdForm::CheckHit; exclude inner for DlgEdForm bExcludeInner = true; |