diff options
author | Armin Le Grand (allotropia) <armin.le.grand.extern@allotropia.de> | 2023-12-08 12:42:37 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-12-12 09:39:32 +0100 |
commit | aa281fab00724d23c8d6f1f7fd557e3f05dcfc51 (patch) | |
tree | 48f0632801a139b32accc54fd12c2517d0bba23d /svx | |
parent | 0be761900d69febd9ccb2a6a88b6183416d09c7b (diff) |
tdf#158421 use correct awt:Gradient2 in Chart lists
Change-Id: I5fa02c2660d59981f540cde8bd6eaaaaddb30e65
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160463
Tested-by: Jenkins
Reviewed-by: Armin Le Grand <Armin.Le.Grand@me.com>
(cherry picked from commit 6c986c718630ab21e6d9b5d353ddf1534e2dda41)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160573
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unogtabl.cxx | 5 | ||||
-rw-r--r-- | svx/source/unodraw/unottabl.cxx | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/svx/source/unodraw/unogtabl.cxx b/svx/source/unodraw/unogtabl.cxx index 7939ccfd0e89..74f25f4a1397 100644 --- a/svx/source/unodraw/unogtabl.cxx +++ b/svx/source/unodraw/unogtabl.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <com/sun/star/awt/Gradient.hpp> +#include <com/sun/star/awt/Gradient2.hpp> #include "UnoNameItemTable.hxx" #include <svx/svdmodel.hxx> @@ -65,7 +65,8 @@ NameOrIndex* SvxUnoGradientTable::createItem() const { return new XFillGradientI // XElementAccess uno::Type SAL_CALL SvxUnoGradientTable::getElementType() { - return cppu::UnoType<awt::Gradient>::get(); + // tdf#158421 use newer extended type for the list + return cppu::UnoType<awt::Gradient2>::get(); } /** diff --git a/svx/source/unodraw/unottabl.cxx b/svx/source/unodraw/unottabl.cxx index 6233bccb9a0b..33cab4364937 100644 --- a/svx/source/unodraw/unottabl.cxx +++ b/svx/source/unodraw/unottabl.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <com/sun/star/awt/Gradient.hpp> +#include <com/sun/star/awt/Gradient2.hpp> #include <svx/xflftrit.hxx> #include <svx/svdmodel.hxx> @@ -71,7 +71,8 @@ NameOrIndex* SvxUnoTransGradientTable::createItem() const // XElementAccess uno::Type SAL_CALL SvxUnoTransGradientTable::getElementType() { - return cppu::UnoType<awt::Gradient>::get(); + // tdf#158421 use newer extended type for the list + return cppu::UnoType<awt::Gradient2>::get(); } /** |