diff options
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/DatabaseForm.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx index da50462c3df8..2b072e4e1995 100644 --- a/forms/source/component/DatabaseForm.cxx +++ b/forms/source/component/DatabaseForm.cxx @@ -3217,7 +3217,7 @@ void SAL_CALL ODatabaseForm::addRowSetApproveListener(const Reference<XRowSetApp Reference<XRowSetApproveBroadcaster> xBroadcaster; if (query_aggregation( m_xAggregate, xBroadcaster)) { - Reference<XRowSetApproveListener> xListener((XRowSetApproveListener*)this); + Reference<XRowSetApproveListener> xListener(static_cast<XRowSetApproveListener*>(this)); xBroadcaster->addRowSetApproveListener(xListener); } } @@ -3234,7 +3234,7 @@ void SAL_CALL ODatabaseForm::removeRowSetApproveListener(const Reference<XRowSet Reference<XRowSetApproveBroadcaster> xBroadcaster; if (query_aggregation( m_xAggregate, xBroadcaster)) { - Reference<XRowSetApproveListener> xListener((XRowSetApproveListener*)this); + Reference<XRowSetApproveListener> xListener(static_cast<XRowSetApproveListener*>(this)); xBroadcaster->removeRowSetApproveListener(xListener); } } |