diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-16 15:41:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-17 07:57:52 +0200 |
commit | 792886d34bd87ad5e2b3d197e86ab41205a33618 (patch) | |
tree | 0551fbd7d72f9165b181bccaaa99407a5f386f13 /basctl/source/inc | |
parent | 210db2bf9e199f0a58fbd7a629edda63903fabac (diff) |
convert basctl::Layout::SplittedSide::Side to scoped enum
and drop unused enumerators
Change-Id: I7c8338423eddb64bf4d4138d2613dd393408c9e3
Diffstat (limited to 'basctl/source/inc')
-rw-r--r-- | basctl/source/inc/layout.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/inc/layout.hxx b/basctl/source/inc/layout.hxx index 434b6b160856..5b66e4163032 100644 --- a/basctl/source/inc/layout.hxx +++ b/basctl/source/inc/layout.hxx @@ -79,7 +79,7 @@ private: class SplittedSide { public: - enum Side {Right, Top, Left, Bottom}; + enum class Side {Left, Bottom}; SplittedSide (Layout*, Side); void Add (DockingWindow*, Size const&); void Remove (DockingWindow*); |