summaryrefslogtreecommitdiffstats
path: root/sfx2/source/dialog/securitypage.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/dialog/securitypage.cxx')
-rw-r--r--sfx2/source/dialog/securitypage.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/dialog/securitypage.cxx b/sfx2/source/dialog/securitypage.cxx
index 45a2ccc0bb00..d04d2166a686 100644
--- a/sfx2/source/dialog/securitypage.cxx
+++ b/sfx2/source/dialog/securitypage.cxx
@@ -418,16 +418,16 @@ SfxSecurityPage::SfxSecurityPage(TabPageParent pParent, const SfxItemSet& rItemS
bool SfxSecurityPage::FillItemSet( SfxItemSet * /*rItemSet*/ )
{
bool bModified = false;
- DBG_ASSERT( m_pImpl.get(), "implementation pointer is 0. Still in c-tor?" );
- if (m_pImpl.get() != nullptr)
+ DBG_ASSERT(m_pImpl, "implementation pointer is 0. Still in c-tor?");
+ if (m_pImpl != nullptr)
bModified = m_pImpl->FillItemSet_Impl();
return bModified;
}
void SfxSecurityPage::Reset( const SfxItemSet * /*rItemSet*/ )
{
- DBG_ASSERT( m_pImpl.get(), "implementation pointer is 0. Still in c-tor?" );
- if (m_pImpl.get() != nullptr)
+ DBG_ASSERT(m_pImpl, "implementation pointer is 0. Still in c-tor?");
+ if (m_pImpl != nullptr)
m_pImpl->Reset_Impl();
}