summaryrefslogtreecommitdiff
path: root/include/vcl/throbber.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-05-29 13:00:07 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-30 06:39:19 +0000
commit92bad2a3d97586dc1127580e1d5a002679105149 (patch)
tree9861175585e5c1c4c37b93772e9d1e48b9e9b267 /include/vcl/throbber.hxx
parent6a5a2350c1c4924dd3fe92c8a3016c8c8ca1c275 (diff)
Convert ImageSet to scoped enum
Change-Id: I9957435f769957d76e95248914a422e82019e22d Reviewed-on: https://gerrit.libreoffice.org/25604 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/vcl/throbber.hxx')
-rw-r--r--include/vcl/throbber.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/throbber.hxx b/include/vcl/throbber.hxx
index 898fee4e3ba8..1ab8ce62906c 100644
--- a/include/vcl/throbber.hxx
+++ b/include/vcl/throbber.hxx
@@ -31,18 +31,18 @@
class VCL_DLLPUBLIC Throbber : public ImageControl
{
public:
- enum ImageSet
+ enum class ImageSet
{
/// no (default) images at all
- IMAGES_NONE,
+ NONE,
/// automatically decide between different image sets, depending on what fits best the actual size
- IMAGES_AUTO,
+ Auto,
/// default images, 16x16 pixels
- IMAGES_16_PX,
+ N16px,
/// default images, 32x32 pixels
- IMAGES_32_PX,
+ N32px,
/// default images, 64x64 pixels
- IMAGES_64_PX,
+ N64px,
};
public: