summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/core/api/RowSetBase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/core/api/RowSetBase.cxx')
-rw-r--r--dbaccess/source/core/api/RowSetBase.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/core/api/RowSetBase.cxx b/dbaccess/source/core/api/RowSetBase.cxx
index 7518cacf1cd7..50df0f2e01ba 100644
--- a/dbaccess/source/core/api/RowSetBase.cxx
+++ b/dbaccess/source/core/api/RowSetBase.cxx
@@ -1412,14 +1412,14 @@ void ORowSetNotifier::fire()
std::vector<sal_Int32>& ORowSetNotifier::getChangedColumns() const
{
- OSL_ENSURE(m_pImpl.get(),"Illegal CTor call, use the other one!");
+ OSL_ENSURE(m_pImpl, "Illegal CTor call, use the other one!");
return m_pImpl->aChangedColumns;
}
void ORowSetNotifier::firePropertyChange()
{
- OSL_ENSURE(m_pImpl.get(),"Illegal CTor call, use the other one!");
- if( m_pImpl.get() )
+ OSL_ENSURE(m_pImpl, "Illegal CTor call, use the other one!");
+ if (m_pImpl)
{
for (auto const& changedColumn : m_pImpl->aChangedColumns)
{