diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-03-23 23:25:58 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-03-25 16:29:08 +0100 |
commit | d2605c0b1026aba39085913c69da1f9974430e20 (patch) | |
tree | c05720d2f0aa5fcff98c2bfeac6a33f813136da4 /cui | |
parent | 1f211f1cb2cff4f8ec0e8c21a3258b8b4077c883 (diff) |
cui: replace DBG_ASSERTs with bogus messages
Change-Id: I0646224e50d36db0171c063bd68e8eb6b4b6519c
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/customize/acccfg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx index d2aa51208406..f1dda16992b2 100644 --- a/cui/source/customize/acccfg.cxx +++ b/cui/source/customize/acccfg.cxx @@ -1202,7 +1202,7 @@ IMPL_LINK_NOARG(SfxAcceleratorConfigPage, RadioHdl) //----------------------------------------------- IMPL_LINK_NOARG(SfxAcceleratorConfigPage, LoadHdl) { - DBG_ASSERT( m_pFileDlg, "SfxInternetPage::DialogClosedHdl(): no file dialog" ); + assert(m_pFileDlg); OUString sCfgName; if ( ERRCODE_NONE == m_pFileDlg->GetError() ) @@ -1286,7 +1286,7 @@ IMPL_LINK_NOARG(SfxAcceleratorConfigPage, LoadHdl) //----------------------------------------------- IMPL_LINK_NOARG(SfxAcceleratorConfigPage, SaveHdl) { - DBG_ASSERT( m_pFileDlg, "SfxInternetPage::DialogClosedHdl(): no file dialog" ); + assert(m_pFileDlg); OUString sCfgName; if ( ERRCODE_NONE == m_pFileDlg->GetError() ) |