summaryrefslogtreecommitdiff
path: root/include/svx/pagectrl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-03-14 08:39:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-15 08:35:10 +0000
commit8ccbc16b5e3f94b8db105232d7085a8553e6bc03 (patch)
tree85b8affc4e3916a21c6b303c90dc0f080d464bbf /include/svx/pagectrl.hxx
parent7fafd1aea08ad036ef48f415db5df93df218bf6e (diff)
convert SvxFrameDirection to scoped enum
Based on the casts in chart2/source/view/main/ChartView.cxx and the similarity of naming of values, I conclude that this enum was intended to abstract over css::text::WritingMode2. Added a comment to that effect. Change-Id: I3af8bbe8b6ac8c4a9375f6ccde145b98b9c69a57 Reviewed-on: https://gerrit.libreoffice.org/35164 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/pagectrl.hxx')
-rw-r--r--include/svx/pagectrl.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/pagectrl.hxx b/include/svx/pagectrl.hxx
index 25b6bb54fe29..64123cf0be8a 100644
--- a/include/svx/pagectrl.hxx
+++ b/include/svx/pagectrl.hxx
@@ -25,6 +25,7 @@
class SvxBoxItem;
enum class SvxPageUsage;
+enum class SvxFrameDirection;
class SVX_DLLPUBLIC SvxPageWindow : public vcl::Window
{
@@ -42,7 +43,7 @@ private:
SvxBoxItem* pBorder;
bool bResetBackground;
bool bFrameDirection;
- sal_Int32 nFrameDirection;
+ SvxFrameDirection nFrameDirection;
long nHdLeft;
long nHdRight;
@@ -151,8 +152,7 @@ public:
void SetVert( bool bNew ) { bVert = bNew; }
void EnableFrameDirection(bool bEnable);
- //uses enum SvxFrameDirection
- void SetFrameDirection(sal_Int32 nDirection);
+ void SetFrameDirection(SvxFrameDirection nDirection);
void ResetBackground();