diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-30 08:22:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-30 08:40:03 +0200 |
commit | b62f4c2cd9685618fff2270760ce0787880f1c8d (patch) | |
tree | 31dd6705a99ec9070aef1e57c5ad0e6be13bf30f /cui/source/tabpages/tptrans.cxx | |
parent | cbea925b367535eb2652a2c8fa80b4cc746d95bd (diff) |
convert RECT_POINT to scoped enum
Change-Id: I3f0304d69d5d638230b64135c73497192dc00cb3
Diffstat (limited to 'cui/source/tabpages/tptrans.cxx')
-rw-r--r-- | cui/source/tabpages/tptrans.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/tabpages/tptrans.cxx b/cui/source/tabpages/tptrans.cxx index 1809549fad36..cc718cc949a8 100644 --- a/cui/source/tabpages/tptrans.cxx +++ b/cui/source/tabpages/tptrans.cxx @@ -241,7 +241,7 @@ SvxTransparenceTabPage::SvxTransparenceTabPage(vcl::Window* pParent, const SfxIt "cui/ui/transparencytabpage.ui", rInAttrs), rOutAttrs ( rInAttrs ), - eRP ( RP_LT ), + eRP ( RectPoint::LT ), nPageType ( PageType::Area ), nDlgType (0), bBitmap ( false ), @@ -489,7 +489,7 @@ DeactivateRC SvxTransparenceTabPage::DeactivatePage(SfxItemSet* _pSet) return DeactivateRC::LeavePage; } -void SvxTransparenceTabPage::PointChanged(vcl::Window* , RECT_POINT eRcPt) +void SvxTransparenceTabPage::PointChanged(vcl::Window* , RectPoint eRcPt) { eRP = eRcPt; } |