diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-02 13:54:34 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-05 08:21:46 +0200 |
commit | a1cd62bcd589a7c1050e327f4cb0ad95f9ea19d1 (patch) | |
tree | 4564ea2be6311b5e44e67d9036bafab0c501ccb8 /include/vcl | |
parent | 256654c26fa0d474891809d30d0004c3d87a5841 (diff) |
convert ToolBoxButtonSize to scoped enum
Change-Id: I365b0e34361eb339b04e5f4792f54eff5bf582a5
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/toolbox.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx index 6020b01a8257..28a70451217d 100644 --- a/include/vcl/toolbox.hxx +++ b/include/vcl/toolbox.hxx @@ -60,7 +60,7 @@ namespace o3tl // small or large force an exact toolbox size for proper alignemnt // dontcare will let the toolbox decide about its size -enum ToolBoxButtonSize { TOOLBOX_BUTTONSIZE_DONTCARE, TOOLBOX_BUTTONSIZE_SMALL, TOOLBOX_BUTTONSIZE_LARGE }; +enum class ToolBoxButtonSize { DontCare, Small, Large }; // ToolBoxLayoutMode::Normal - traditional layout, items are centered in the toolbar // ToolBoxLayoutMode::LockVert - special mode (currently used for calc input/formula |