diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-05-29 13:00:07 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-30 06:39:19 +0000 |
commit | 92bad2a3d97586dc1127580e1d5a002679105149 (patch) | |
tree | 9861175585e5c1c4c37b93772e9d1e48b9e9b267 /toolkit | |
parent | 6a5a2350c1c4924dd3fe92c8a3016c8c8ca1c275 (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 'toolkit')
-rw-r--r-- | toolkit/source/controls/spinningprogress.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/controls/spinningprogress.cxx b/toolkit/source/controls/spinningprogress.cxx index 76b36f0e379b..73fd74fe920d 100644 --- a/toolkit/source/controls/spinningprogress.cxx +++ b/toolkit/source/controls/spinningprogress.cxx @@ -61,7 +61,7 @@ protected: { Throbber::ImageSet aImageSets[] = { - Throbber::IMAGES_16_PX, Throbber::IMAGES_32_PX, Throbber::IMAGES_64_PX + Throbber::ImageSet::N16px, Throbber::ImageSet::N32px, Throbber::ImageSet::N64px }; for ( size_t i=0; i < SAL_N_ELEMENTS(aImageSets); ++i ) { |