diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-19 11:55:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-19 13:08:29 +0200 |
commit | 39e63bfac528d8c5c002ee8fef4a1e5d7181b826 (patch) | |
tree | 8e8dc14e1719c361ccf0cdaccde66b3b7862b1e7 /cui/source | |
parent | 367105e0248c7b80b60b2554d04f5f248b4259b3 (diff) |
convert remaing DBG_WARNING to SAL_INFO
and drop the macro
Change-Id: I452ca373d0c277166e94928c1bce78bf37e39d7c
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/dialogs/hangulhanjadlg.cxx | 4 | ||||
-rw-r--r-- | cui/source/options/optlingu.cxx | 8 | ||||
-rw-r--r-- | cui/source/options/treeopt.cxx | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx index c8a1a8d9624e..1a8092bec5f5 100644 --- a/cui/source/dialogs/hangulhanjadlg.cxx +++ b/cui/source/dialogs/hangulhanjadlg.cxx @@ -1567,7 +1567,7 @@ namespace svx } else { - DBG_WARNING( "+HangulHanjaEditDictDialog::NewPBPushHdl(): dictionary faded away..." ); + SAL_INFO( "cui.dialogs", "dictionary faded away..." ); } } @@ -1650,7 +1650,7 @@ namespace svx } else { - DBG_WARNING( "+HangulHanjaEditDictDialog::UpdateOriginalLB(): dictionary faded away..." ); + SAL_INFO( "cui.dialogs", "dictionary faded away..." ); } } diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx index 41c142222b15..814d5d8f8967 100644 --- a/cui/source/options/optlingu.cxx +++ b/cui/source/options/optlingu.cxx @@ -2122,7 +2122,7 @@ void SvxEditModulesDlg::LangSelectHdl_Impl(ListBox* pBox) const bool bHasLang = rTable.count( eCurLanguage ); if (!bHasLang) { - DBG_WARNING( "language entry missing" ); // only relevant if all languages found should be supported + SAL_INFO( "cui.dialogs", "language entry missing" ); // only relevant if all languages found should be supported } const bool bCheck = bHasLang && lcl_SeqGetEntryPos( rTable[ eCurLanguage ], aImplName ) >= 0; lcl_SetCheckButton( pNewEntry, bCheck ); @@ -2166,7 +2166,7 @@ void SvxEditModulesDlg::LangSelectHdl_Impl(ListBox* pBox) const bool bHasLang = rTable.count( eCurLanguage ); if (!bHasLang) { - DBG_WARNING( "language entry missing" ); // only relevant if all languages found should be supported + SAL_INFO( "cui.dialogs", "language entry missing" ); // only relevant if all languages found should be supported } const bool bCheck = bHasLang && lcl_SeqGetEntryPos( rTable[ eCurLanguage ], aImplName ) >= 0; lcl_SetCheckButton( pNewEntry, bCheck ); @@ -2210,7 +2210,7 @@ void SvxEditModulesDlg::LangSelectHdl_Impl(ListBox* pBox) const bool bHasLang = rTable.count( eCurLanguage ); if (!bHasLang) { - DBG_WARNING( "language entry missing" ); // only relevant if all languages found should be supported + SAL_INFO( "cui.dialogs", "language entry missing" ); // only relevant if all languages found should be supported } const bool bCheck = bHasLang && lcl_SeqGetEntryPos( rTable[ eCurLanguage ], aImplName ) >= 0; lcl_SetCheckButton( pNewEntry, bCheck ); @@ -2254,7 +2254,7 @@ void SvxEditModulesDlg::LangSelectHdl_Impl(ListBox* pBox) const bool bHasLang = rTable.count( eCurLanguage ); if (!bHasLang) { - DBG_WARNING( "language entry missing" ); // only relevant if all languages found should be supported + SAL_INFO( "cui.dialogs", "language entry missing" ); // only relevant if all languages found should be supported } const bool bCheck = bHasLang && lcl_SeqGetEntryPos( rTable[ eCurLanguage ], aImplName ) >= 0; lcl_SetCheckButton( pNewEntry, bCheck ); diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx index 34e370b06d35..e8cdeb4ab50e 100644 --- a/cui/source/options/treeopt.cxx +++ b/cui/source/options/treeopt.cxx @@ -1493,7 +1493,7 @@ OUString getCurrentFactory_Impl( const Reference< XFrame >& _xFrame ) } catch ( css::frame::UnknownModuleException& ) { - DBG_WARNING( "getActiveModule_Impl(): unknown module" ); + SAL_INFO( "cui.options", "unknown module" ); } catch ( Exception& ) { @@ -1847,7 +1847,7 @@ OUString OfaTreeOptionsDialog::GetModuleIdentifier( const Reference< XFrame >& r } catch ( css::frame::UnknownModuleException& ) { - DBG_WARNING( "OfaTreeOptionsDialog::GetModuleIdentifier(): unknown module" ); + SAL_INFO( "cui.options", "unknown module" ); } catch ( Exception& ) { |