diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-02-16 13:56:04 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-02-16 17:13:01 +0100 |
commit | 2c8ffa41ec8e1ab2af95d5e033a445c17d29cf5a (patch) | |
tree | 27939b26b4745b85f50fe004d77304d39789dd4a /include/sfx2 | |
parent | 0b86394983e05f7ffecb9e20792aba090680eff6 (diff) |
weld sidebar "too-narrow" CloseIndicator
Change-Id: Ifda6f56ba51d46bd35065c2230f39e837b037096
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110991
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/sidebar/Theme.hxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/include/sfx2/sidebar/Theme.hxx b/include/sfx2/sidebar/Theme.hxx index c59d71233b00..ebacb4322c62 100644 --- a/include/sfx2/sidebar/Theme.hxx +++ b/include/sfx2/sidebar/Theme.hxx @@ -51,11 +51,9 @@ public: enum ThemeItem { Begin_, - Pre_Image_ = Begin_, + Pre_Color_ = Begin_, - AnyItem_ = Pre_Image_, - - Image_CloseIndicator, + AnyItem_ = Pre_Color_, Image_Color_, @@ -92,7 +90,6 @@ public: End_=Post_Bool_ }; - static Image GetImage (const ThemeItem eItem); static Color GetColor (const ThemeItem eItem); static sal_Int32 GetInteger (const ThemeItem eItem); static bool GetBoolean (const ThemeItem eItem); @@ -140,7 +137,6 @@ public: private: static Theme& GetCurrentTheme(); - std::vector<Image> maImages; std::vector<Color> maColors; std::vector<sal_Int32> maIntegers; std::vector<bool> maBooleans; @@ -163,7 +159,6 @@ private: enum PropertyType { - PT_Image, PT_Color, PT_Integer, PT_Boolean, |