summaryrefslogtreecommitdiff
path: root/sw/source/uibase/utlui/attrdesc.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-09-21 10:37:51 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-09-21 09:24:55 +0000
commit51c6e9153de507f37d1474b31f557265cb304c06 (patch)
tree6d02d302fbee51a934c9fb8235cf4b410fde5d53 /sw/source/uibase/utlui/attrdesc.cxx
parent25e4708c1f49986f3f082beb2e940aa2d7fb4d81 (diff)
convert SfxItemPresentation to scoped enum
Change-Id: Ibf605706a9f804ab509ac4f92f5f88fcf3daebc1 Reviewed-on: https://gerrit.libreoffice.org/29131 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase/utlui/attrdesc.cxx')
-rw-r--r--sw/source/uibase/utlui/attrdesc.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/uibase/utlui/attrdesc.cxx b/sw/source/uibase/utlui/attrdesc.cxx
index 8037c8249825..965157df48b4 100644
--- a/sw/source/uibase/utlui/attrdesc.cxx
+++ b/sw/source/uibase/utlui/attrdesc.cxx
@@ -707,7 +707,7 @@ bool SwRotationGrf::GetPresentation(
SfxItemPresentation ePres, MapUnit /*eCoreUnit*/, MapUnit /*ePresUnit*/,
OUString &rText, const IntlWrapper* /*pIntl*/) const
{
- if( SFX_ITEM_PRESENTATION_COMPLETE == ePres )
+ if( SfxItemPresentation::Complete == ePres )
rText = SW_RESSTR( STR_ROTATION );
else if( rText.getLength() )
rText.clear();
@@ -719,7 +719,7 @@ bool SwLuminanceGrf::GetPresentation(
SfxItemPresentation ePres, MapUnit /*eCoreUnit*/, MapUnit /*ePresUnit*/,
OUString &rText, const IntlWrapper* /*pIntl*/) const
{
- if( SFX_ITEM_PRESENTATION_COMPLETE == ePres )
+ if( SfxItemPresentation::Complete == ePres )
rText = SW_RESSTR( STR_LUMINANCE );
else if( rText.getLength() )
rText.clear();
@@ -732,7 +732,7 @@ bool SwContrastGrf::GetPresentation(
SfxItemPresentation ePres, MapUnit /*eCoreUnit*/, MapUnit /*ePresUnit*/,
OUString &rText, const IntlWrapper* /*pIntl*/) const
{
- if( SFX_ITEM_PRESENTATION_COMPLETE == ePres )
+ if( SfxItemPresentation::Complete == ePres )
rText = SW_RESSTR( STR_CONTRAST );
else if( rText.getLength() )
rText.clear();
@@ -745,7 +745,7 @@ bool SwChannelGrf::GetPresentation(
SfxItemPresentation ePres, MapUnit /*eCoreUnit*/, MapUnit /*ePresUnit*/,
OUString &rText, const IntlWrapper* /*pIntl*/) const
{
- if( SFX_ITEM_PRESENTATION_COMPLETE == ePres )
+ if( SfxItemPresentation::Complete == ePres )
{
sal_uInt16 nId;
switch ( Which() )
@@ -772,7 +772,7 @@ bool SwGammaGrf::GetPresentation(
OUString &rText, const IntlWrapper* /*pIntl*/) const
{
OUStringBuffer aText;
- if( SFX_ITEM_PRESENTATION_COMPLETE == ePres )
+ if( SfxItemPresentation::Complete == ePres )
aText.append(SW_RESSTR(STR_GAMMA));
aText.append(unicode::formatPercent(GetValue(),
Application::GetSettings().GetUILanguageTag()));
@@ -785,7 +785,7 @@ bool SwInvertGrf::GetPresentation(
OUString &rText, const IntlWrapper* /*pIntl*/) const
{
rText.clear();
- if( SFX_ITEM_PRESENTATION_COMPLETE == ePres )
+ if( SfxItemPresentation::Complete == ePres )
{
const sal_uInt16 nId = GetValue() ? STR_INVERT : STR_INVERT_NOT;
rText = SW_RESSTR( nId );
@@ -797,7 +797,7 @@ bool SwTransparencyGrf::GetPresentation(
SfxItemPresentation ePres, MapUnit /*eCoreUnit*/, MapUnit /*ePresUnit*/,
OUString &rText, const IntlWrapper* /*pIntl*/) const
{
- if( SFX_ITEM_PRESENTATION_COMPLETE == ePres )
+ if( SfxItemPresentation::Complete == ePres )
rText = SW_RESSTR( STR_TRANSPARENCY );
else if( rText.getLength() )
rText.clear();
@@ -811,7 +811,7 @@ bool SwDrawModeGrf::GetPresentation(
OUString &rText, const IntlWrapper* /*pIntl*/) const
{
rText.clear();
- if( SFX_ITEM_PRESENTATION_COMPLETE == ePres )
+ if( SfxItemPresentation::Complete == ePres )
{
sal_uInt16 nId;
switch ( GetValue() )
@@ -834,7 +834,7 @@ bool SwFormatFollowTextFlow::GetPresentation( SfxItemPresentation ePres,
const IntlWrapper* /*pIntl*/ ) const
{
rText.clear();
- if( SFX_ITEM_PRESENTATION_COMPLETE == ePres )
+ if( SfxItemPresentation::Complete == ePres )
{
const sal_uInt16 nId = GetValue() ? STR_FOLLOW_TEXT_FLOW : STR_DONT_FOLLOW_TEXT_FLOW;
rText = SW_RESSTR( nId );