diff options
author | offtkp <parisoplop@gmail.com> | 2023-11-01 19:14:44 +0200 |
---|---|---|
committer | Paris Oplopoios <parisoplop@gmail.com> | 2023-11-01 21:54:03 +0100 |
commit | ceef5a9c39be2b2b16c800f1d92a6b7bf968d8ed (patch) | |
tree | 08af05fad36275bc88f42c98f84138720c065daa | |
parent | 64d7bb1917c38ad8e256a482778df647904f5502 (diff) |
sc: Fix conditional formatting icon set order for smilies
The order of these icon sets was not consistent with other icon sets
(traffic lights, flags, circles) and Excel
Change-Id: I5cbc2ff96118530420341f6994310f946717e0d3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158703
Reviewed-by: Paris Oplopoios <parisoplop@gmail.com>
Tested-by: Jenkins
-rw-r--r-- | sc/source/core/data/colorscale.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx index b205d35adb6e..eff6d050b13b 100644 --- a/sc/source/core/data/colorscale.cxx +++ b/sc/source/core/data/colorscale.cxx @@ -1337,11 +1337,11 @@ constexpr OUString a3Flags[] = { }; constexpr OUString a3Smilies[] = { - BMP_ICON_SET_POSITIVE_YELLOW_SMILIE, BMP_ICON_SET_NEUTRAL_YELLOW_SMILIE, BMP_ICON_SET_NEGATIVE_YELLOW_SMILIE + BMP_ICON_SET_NEGATIVE_YELLOW_SMILIE, BMP_ICON_SET_NEUTRAL_YELLOW_SMILIE, BMP_ICON_SET_POSITIVE_YELLOW_SMILIE }; constexpr OUString a3ColorSmilies[] = { - BMP_ICON_SET_POSITIVE_GREEN_SMILIE, BMP_ICON_SET_NEUTRAL_YELLOW_SMILIE, BMP_ICON_SET_NEGATIVE_RED_SMILIE + BMP_ICON_SET_NEGATIVE_RED_SMILIE, BMP_ICON_SET_NEUTRAL_YELLOW_SMILIE, BMP_ICON_SET_POSITIVE_GREEN_SMILIE }; constexpr OUString a3Stars[] = { |