summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/control/ScrollHelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/control/ScrollHelper.cxx')
-rw-r--r--dbaccess/source/ui/control/ScrollHelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/control/ScrollHelper.cxx b/dbaccess/source/ui/control/ScrollHelper.cxx
index e6270ca7674f..03bcdcb879a7 100644
--- a/dbaccess/source/ui/control/ScrollHelper.cxx
+++ b/dbaccess/source/ui/control/ScrollHelper.cxx
@@ -39,13 +39,13 @@ namespace dbaui
// if pointer in bottom area begin scroll
if( aScrollArea.IsInside(_rPoint) )
- m_aUpScroll.Call(NULL);
+ m_aUpScroll.Call(nullptr);
else
{
aScrollArea.SetPos(Point(0,0));
// if pointer in top area begin scroll
if( aScrollArea.IsInside(_rPoint) )
- m_aDownScroll.Call(NULL);
+ m_aDownScroll.Call(nullptr);
}
}
}