diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-20 16:21:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-06 10:59:40 +0200 |
commit | bae855e667993ea6cddd551452c6e2fa60bdc2f3 (patch) | |
tree | 6ddf4f5d003ce53e9855cbe260851ef00ffa69ca /include/vcl | |
parent | 9b45157ab20c9b158a1ef8f4f364d7a46d9c276b (diff) |
fdo#84938: replace BUTTONTYPE_ constants with 'enum class'
Change-Id: I54f9019297913683605b5aea9f79b3defc1dcc13
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 3f2fbc19904a..2d6961da1286 100644 --- a/include/vcl/toolbox.hxx +++ b/include/vcl/toolbox.hxx @@ -356,7 +356,7 @@ public: const ImageList& GetImageList() const { return maImageList; } void SetImageList( const ImageList& rImageList ); - void SetButtonType( ButtonType eNewType = BUTTON_SYMBOL ); + void SetButtonType( ButtonType eNewType = ButtonType::SYMBOLONLY ); ButtonType GetButtonType() const { return meButtonType; } // sets a fixed button size (small, large or dontcare (==autosize)) |