From 837aa67861275dd56831cbba03a989b5ad71db4b Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Wed, 4 Apr 2012 21:11:26 +0200 Subject: reduce overzealous naming --- editeng/inc/editeng/numitem.hxx | 8 ++++---- editeng/source/items/numitem.cxx | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'editeng') diff --git a/editeng/inc/editeng/numitem.hxx b/editeng/inc/editeng/numitem.hxx index cf7d34409056..a6ef8e64e336 100644 --- a/editeng/inc/editeng/numitem.hxx +++ b/editeng/inc/editeng/numitem.hxx @@ -109,7 +109,7 @@ public: LABEL_WIDTH_AND_POSITION, LABEL_ALIGNMENT }; - enum SvxNumLabelFollowedBy + enum LabelFollowedBy { LISTTAB, SPACE, @@ -147,7 +147,7 @@ private: // specifies what follows the list label before the text of the first line // of the list item starts - SvxNumLabelFollowedBy meLabelFollowedBy; + LabelFollowedBy meLabelFollowedBy; // specifies an additional list tab stop position for meLabelFollowedBy = LISTTAB long mnListtabPos; // specifies the first line indent @@ -224,8 +224,8 @@ public: void SetCharTextDistance(short nSet) { nCharTextDistance = nSet; } short GetCharTextDistance() const; - void SetLabelFollowedBy( const SvxNumLabelFollowedBy eLabelFollowedBy ); - SvxNumLabelFollowedBy GetLabelFollowedBy() const; + void SetLabelFollowedBy( const LabelFollowedBy eLabelFollowedBy ); + LabelFollowedBy GetLabelFollowedBy() const; void SetListtabPos( const long nListtabPos ); long GetListtabPos() const; void SetFirstLineIndent( const long nFirstLineIndent ); diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx index 7346805b9de9..fc081b232136 100644 --- a/editeng/source/items/numitem.cxx +++ b/editeng/source/items/numitem.cxx @@ -438,11 +438,11 @@ short SvxNumberFormat::GetCharTextDistance() const return mePositionAndSpaceMode == LABEL_WIDTH_AND_POSITION ? nCharTextDistance : 0; } -void SvxNumberFormat::SetLabelFollowedBy( const SvxNumLabelFollowedBy eLabelFollowedBy ) +void SvxNumberFormat::SetLabelFollowedBy( const LabelFollowedBy eLabelFollowedBy ) { meLabelFollowedBy = eLabelFollowedBy; } -SvxNumberFormat::SvxNumLabelFollowedBy SvxNumberFormat::GetLabelFollowedBy() const +SvxNumberFormat::LabelFollowedBy SvxNumberFormat::GetLabelFollowedBy() const { return meLabelFollowedBy; } -- cgit