Kaydet (Commit) d2605c0b authored tarafından Michael Stahl's avatar Michael Stahl

cui: replace DBG_ASSERTs with bogus messages

Change-Id: I0646224e50d36db0171c063bd68e8eb6b4b6519c
üst 1f211f1c
...@@ -1202,7 +1202,7 @@ IMPL_LINK_NOARG(SfxAcceleratorConfigPage, RadioHdl) ...@@ -1202,7 +1202,7 @@ IMPL_LINK_NOARG(SfxAcceleratorConfigPage, RadioHdl)
//----------------------------------------------- //-----------------------------------------------
IMPL_LINK_NOARG(SfxAcceleratorConfigPage, LoadHdl) IMPL_LINK_NOARG(SfxAcceleratorConfigPage, LoadHdl)
{ {
DBG_ASSERT( m_pFileDlg, "SfxInternetPage::DialogClosedHdl(): no file dialog" ); assert(m_pFileDlg);
OUString sCfgName; OUString sCfgName;
if ( ERRCODE_NONE == m_pFileDlg->GetError() ) if ( ERRCODE_NONE == m_pFileDlg->GetError() )
...@@ -1286,7 +1286,7 @@ IMPL_LINK_NOARG(SfxAcceleratorConfigPage, LoadHdl) ...@@ -1286,7 +1286,7 @@ IMPL_LINK_NOARG(SfxAcceleratorConfigPage, LoadHdl)
//----------------------------------------------- //-----------------------------------------------
IMPL_LINK_NOARG(SfxAcceleratorConfigPage, SaveHdl) IMPL_LINK_NOARG(SfxAcceleratorConfigPage, SaveHdl)
{ {
DBG_ASSERT( m_pFileDlg, "SfxInternetPage::DialogClosedHdl(): no file dialog" ); assert(m_pFileDlg);
OUString sCfgName; OUString sCfgName;
if ( ERRCODE_NONE == m_pFileDlg->GetError() ) if ( ERRCODE_NONE == m_pFileDlg->GetError() )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment