diff options
Diffstat (limited to 'svx/source/items')
-rw-r--r-- | svx/source/items/algitem.cxx | 4 | ||||
-rw-r--r-- | svx/source/items/customshapeitem.cxx | 4 | ||||
-rw-r--r-- | svx/source/items/grfitem.cxx | 4 | ||||
-rw-r--r-- | svx/source/items/pageitem.cxx | 4 | ||||
-rw-r--r-- | svx/source/items/postattr.cxx | 12 | ||||
-rw-r--r-- | svx/source/items/rotmodit.cxx | 4 |
6 files changed, 16 insertions, 16 deletions
diff --git a/svx/source/items/algitem.cxx b/svx/source/items/algitem.cxx index b2d7173c4daa..1b7d2c1c97ef 100644 --- a/svx/source/items/algitem.cxx +++ b/svx/source/items/algitem.cxx @@ -215,7 +215,7 @@ bool SvxMarginItem::GetPresentation switch ( ePres ) { - case SFX_ITEM_PRESENTATION_NAMELESS: + case SfxItemPresentation::Nameless: { rText = GetMetricText( (long)nLeftMargin, eCoreUnit, ePresUnit, pIntl ) + cpDelimTmp + @@ -226,7 +226,7 @@ bool SvxMarginItem::GetPresentation GetMetricText( (long)nBottomMargin, eCoreUnit, ePresUnit, pIntl ); return true; } - case SFX_ITEM_PRESENTATION_COMPLETE: + case SfxItemPresentation::Complete: { rText = SVX_RESSTR(RID_SVXITEMS_MARGIN_LEFT) + GetMetricText( (long)nLeftMargin, eCoreUnit, ePresUnit, pIntl ) + diff --git a/svx/source/items/customshapeitem.cxx b/svx/source/items/customshapeitem.cxx index c93336a4f393..dd04f24dca75 100644 --- a/svx/source/items/customshapeitem.cxx +++ b/svx/source/items/customshapeitem.cxx @@ -264,12 +264,12 @@ bool SdrCustomShapeGeometryItem::GetPresentation( MapUnit /*ePresentationMetric*/, OUString &rText, const IntlWrapper *) const { rText += " "; - if ( ePresentation == SFX_ITEM_PRESENTATION_COMPLETE ) + if ( ePresentation == SfxItemPresentation::Complete ) { rText = " " + rText; return true; } - else if ( ePresentation == SFX_ITEM_PRESENTATION_NAMELESS ) + else if ( ePresentation == SfxItemPresentation::Nameless ) return true; return false; } diff --git a/svx/source/items/grfitem.cxx b/svx/source/items/grfitem.cxx index 8f13f3370f05..c76e654a447c 100644 --- a/svx/source/items/grfitem.cxx +++ b/svx/source/items/grfitem.cxx @@ -141,9 +141,9 @@ bool SvxGrfCrop::GetPresentation( rText.clear(); switch( ePres ) { - case SFX_ITEM_PRESENTATION_NAMELESS: + case SfxItemPresentation::Nameless: return true; - case SFX_ITEM_PRESENTATION_COMPLETE: + case SfxItemPresentation::Complete: rText = "L: " + OUString(::GetMetricText( GetLeft(), eCoreUnit, MAP_MM, pIntl )) + " R: " + OUString(::GetMetricText( GetRight(), eCoreUnit, MAP_MM, pIntl )) + " T: " + OUString(::GetMetricText( GetTop(), eCoreUnit, MAP_MM, pIntl )) + diff --git a/svx/source/items/pageitem.cxx b/svx/source/items/pageitem.cxx index a26de42e755f..379b65c59a8d 100644 --- a/svx/source/items/pageitem.cxx +++ b/svx/source/items/pageitem.cxx @@ -96,7 +96,7 @@ bool SvxPageItem::GetPresentation switch ( ePres ) { - case SFX_ITEM_PRESENTATION_NAMELESS: + case SfxItemPresentation::Nameless: { if ( !aDescName.isEmpty() ) { @@ -115,7 +115,7 @@ bool SvxPageItem::GetPresentation } return true; } - case SFX_ITEM_PRESENTATION_COMPLETE: + case SfxItemPresentation::Complete: { rText += SVX_RESSTR(RID_SVXITEMS_PAGE_COMPLETE); if ( !aDescName.isEmpty() ) diff --git a/svx/source/items/postattr.cxx b/svx/source/items/postattr.cxx index f8e4cdd963f3..e0d68484c600 100644 --- a/svx/source/items/postattr.cxx +++ b/svx/source/items/postattr.cxx @@ -50,10 +50,10 @@ bool SvxPostItAuthorItem::GetPresentation { switch ( ePres ) { - case SFX_ITEM_PRESENTATION_NAMELESS: + case SfxItemPresentation::Nameless: rText = GetValue(); return true; - case SFX_ITEM_PRESENTATION_COMPLETE: + case SfxItemPresentation::Complete: rText = SVX_RESSTR(RID_SVXITEMS_AUTHOR_COMPLETE) + GetValue(); return true; default: ;//prevent warning @@ -90,10 +90,10 @@ bool SvxPostItDateItem::GetPresentation { switch ( ePres ) { - case SFX_ITEM_PRESENTATION_NAMELESS: + case SfxItemPresentation::Nameless: rText = GetValue(); return true; - case SFX_ITEM_PRESENTATION_COMPLETE: + case SfxItemPresentation::Complete: rText = SVX_RESSTR(RID_SVXITEMS_DATE_COMPLETE) + GetValue(); return true; default: ;//prevent warning @@ -128,10 +128,10 @@ bool SvxPostItTextItem::GetPresentation { switch ( ePres ) { - case SFX_ITEM_PRESENTATION_NAMELESS: + case SfxItemPresentation::Nameless: rText = GetValue(); return true; - case SFX_ITEM_PRESENTATION_COMPLETE: + case SfxItemPresentation::Complete: rText = SVX_RESSTR(RID_SVXITEMS_TEXT_COMPLETE) + GetValue(); return true; default: ;//prevent warning diff --git a/svx/source/items/rotmodit.cxx b/svx/source/items/rotmodit.cxx index 1ea243ed946b..41262a8973d4 100644 --- a/svx/source/items/rotmodit.cxx +++ b/svx/source/items/rotmodit.cxx @@ -73,11 +73,11 @@ bool SvxRotateModeItem::GetPresentation( switch ( ePres ) { - case SFX_ITEM_PRESENTATION_COMPLETE: + case SfxItemPresentation::Complete: rText += "...: "; SAL_FALLTHROUGH; // break; // FALL THROUGH!!! - case SFX_ITEM_PRESENTATION_NAMELESS: + case SfxItemPresentation::Nameless: rText += OUStringLiteral1( GetValue() ); return true; break; |