include/sal/log-areas.dox | 4 +--- sw/source/core/text/inftxt.cxx | 4 ++-- sw/source/ui/app/docstyle.cxx | 2 +- sw/source/ui/fmtui/tmpdlg.cxx | 4 ++-- 4 files changed, 6 insertions(+), 8 deletions(-)
New commits: commit e9ee572198992868e7beae2911446a70aa4b7aee Author: Zolnai Tamás <[email protected]> Date: Fri Jul 26 08:59:48 2013 +0200 Add more usefull log areas Change-Id: Ic9d8ee7cee5b1b4b54151825e025e0d4815d3bb1 diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox index 085af00..6ff5372 100644 --- a/include/sal/log-areas.dox +++ b/include/sal/log-areas.dox @@ -328,14 +328,12 @@ certain functionality. @section Writer @li @c sw -@li @c sw.app.docstyle @li @c sw.core - Writer core @li @c sw.docx @li @c sw.envelp -@li @c sw.fmtui @li @c sw.level2 @li @c sw.rtf - .rtf export filter -@li @c sw.text.txtinfo +@li @c sw.ui @li @c sw.uno - Writer UNO interfaces @li @c sw.ww8 - .doc/.docx export filter, .doc import filter (not writerfilter) @li @c sw.ww8.level2 - further info for sw.ww8 diff --git a/sw/source/core/text/inftxt.cxx b/sw/source/core/text/inftxt.cxx index 39efe1f..2ce4a60 100644 --- a/sw/source/core/text/inftxt.cxx +++ b/sw/source/core/text/inftxt.cxx @@ -370,7 +370,7 @@ void SwTxtSizeInfo::NoteAnimation() const KSHORT SwTxtSizeInfo::GetAscent() const { - SAL_WARN_IF( !GetOut(), "sw.text.txtinfo", "SwTxtSizeInfo::GetAscent() without m_pOut" ); + SAL_WARN_IF( !GetOut(), "sw.core", "SwTxtSizeInfo::GetAscent() without m_pOut" ); sal_uInt16 nAscent = ((SwFont*)GetFont())->GetAscent( m_pVsh, *GetOut() ); @@ -382,7 +382,7 @@ KSHORT SwTxtSizeInfo::GetAscent() const KSHORT SwTxtSizeInfo::GetTxtHeight() const { - SAL_WARN_IF( !GetOut(), "sw.text.txtinfo", "SwTxtSizeInfo::GetTxtHeight() without m_pOut" ); + SAL_WARN_IF( !GetOut(), "sw.core", "SwTxtSizeInfo::GetTxtHeight() without m_pOut" ); sal_uInt16 nHeight = ((SwFont*)GetFont())->GetHeight( m_pVsh, *GetOut() ); diff --git a/sw/source/ui/app/docstyle.cxx b/sw/source/ui/app/docstyle.cxx index 886e3cf..740b30f 100644 --- a/sw/source/ui/app/docstyle.cxx +++ b/sw/source/ui/app/docstyle.cxx @@ -1047,7 +1047,7 @@ SfxItemSet& SwDocStyleSheet::GetItemSet() if( nFamily == SFX_STYLE_FAMILY_CHAR ) { - SAL_WARN_IF(!pCharFmt, "sw.app.docstyle", "Where's SwCharFmt"); + SAL_WARN_IF(!pCharFmt, "sw.ui", "Where's SwCharFmt"); aCoreSet.Put(pCharFmt->GetAttrSet()); aCoreSet.Put( aBoxInfo ); diff --git a/sw/source/ui/fmtui/tmpdlg.cxx b/sw/source/ui/fmtui/tmpdlg.cxx index 4dc1041..af1c631 100644 --- a/sw/source/ui/fmtui/tmpdlg.cxx +++ b/sw/source/ui/fmtui/tmpdlg.cxx @@ -119,8 +119,8 @@ SwTemplateDlg::SwTemplateDlg(Window* pParent, OSL_ENSURE(pFact->GetTabPageRangesFunc( RID_SVXPAGE_BACKGROUND ) , "GetTabPageRangesFunc fail!"); AddTabPage(TP_BACKGROUND, pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BACKGROUND ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_BACKGROUND ) ); - SAL_WARN_IF(!pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BORDER ), "sw.fmtui", "GetTabPageCreatorFunc fail!"); - SAL_WARN_IF(!pFact->GetTabPageRangesFunc( RID_SVXPAGE_BORDER ), "sw.fmtui", "GetTabPageRangesFunc fail!"); + SAL_WARN_IF(!pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BORDER ), "sw.ui", "GetTabPageCreatorFunc fail!"); + SAL_WARN_IF(!pFact->GetTabPageRangesFunc( RID_SVXPAGE_BORDER ), "sw.ui", "GetTabPageRangesFunc fail!"); AddTabPage(TP_BORDER, pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BORDER ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_BORDER ) ); SvtCJKOptions aCJKOptions;
_______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
