From d2605c0b1026aba39085913c69da1f9974430e20 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Sat, 23 Mar 2013 23:25:58 +0100 Subject: cui: replace DBG_ASSERTs with bogus messages Change-Id: I0646224e50d36db0171c063bd68e8eb6b4b6519c --- cui/source/customize/acccfg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cui/source') 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() ) -- cgit