From 61d79dd740958186c4a4344e18eaeb5b2c139c91 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 2 Mar 2018 11:43:46 +0200 Subject: use more Color in oox Change-Id: I8fdc6742de5af9101e246411e7208650bae2c4c7 Reviewed-on: https://gerrit.libreoffice.org/50617 Tested-by: Jenkins Reviewed-by: Noel Grandin --- oox/source/export/ColorPropertySet.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'oox/source/export/ColorPropertySet.hxx') diff --git a/oox/source/export/ColorPropertySet.hxx b/oox/source/export/ColorPropertySet.hxx index 39bc41f22b6f..e1734422ac8c 100644 --- a/oox/source/export/ColorPropertySet.hxx +++ b/oox/source/export/ColorPropertySet.hxx @@ -23,6 +23,7 @@ // FIXME? this file is identical to xmloff/source/chart/ColorPropertySet.hxx #include +#include #include #include @@ -38,7 +39,7 @@ class ColorPropertySet : public ::cppu::WeakImplHelper< { public: // if bFillColor == false, the color is a LineColor - explicit ColorPropertySet( sal_Int32 nColor, bool bFillColor = true ); + explicit ColorPropertySet( ::Color nColor, bool bFillColor = true ); virtual ~ColorPropertySet() override; protected: @@ -75,9 +76,9 @@ protected: private: css::uno::Reference< css::beans::XPropertySetInfo > m_xInfo; OUString m_aColorPropName; - sal_Int32 m_nColor; + ::Color m_nColor; bool m_bIsFillColor; - sal_Int32 m_nDefaultColor; + ::Color m_nDefaultColor; }; } // namespace chart -- cgit