diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-24 10:01:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 08:40:00 +0200 |
commit | 9e2750f6ac0da27fd4fa799cd449d4df3b07041b (patch) | |
tree | 025fb90330585bd877f6c87466c6e8a034d09a46 /svx/source/inc | |
parent | 47c4daf0d777771185823ac9367f2108e950d12e (diff) |
convert FrameBorderState to scoped enum
Change-Id: I100b5f5030da5610a350ac42c993ca4cfa786857
Diffstat (limited to 'svx/source/inc')
-rw-r--r-- | svx/source/inc/frmselimpl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/inc/frmselimpl.hxx b/svx/source/inc/frmselimpl.hxx index a6dacd4527ce..a74cfd2bc44a 100644 --- a/svx/source/inc/frmselimpl.hxx +++ b/svx/source/inc/frmselimpl.hxx @@ -230,7 +230,7 @@ struct FrameBorderDummy_Pred /** Predicate for frame border iterators to use only visible borders in a container. */ struct FrameBorderVisible_Pred { - inline bool operator()( const FrameBorder* pBorder ) const { return pBorder->GetState() == FRAMESTATE_SHOW; } + inline bool operator()( const FrameBorder* pBorder ) const { return pBorder->GetState() == FrameBorderState::Show; } }; /** Predicate for frame border iterators to use only selected borders in a container. */ |