diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-06 10:34:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-06 11:50:16 +0100 |
commit | f02b1ba18deeab9744c5fe25162f5853d69b438e (patch) | |
tree | d770d9dd6fb7a52e125ce221987bfba12c70ce15 /xmloff/source/chart | |
parent | d15ff312ad80e4d1f210636e3374a81c14c229a2 (diff) |
use more Color in xmloff
Change-Id: Iec12d2e9f3e254dc6525dc285259321b13f75c4a
Reviewed-on: https://gerrit.libreoffice.org/50794
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/source/chart')
-rw-r--r-- | xmloff/source/chart/ColorPropertySet.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xmloff/source/chart/ColorPropertySet.hxx b/xmloff/source/chart/ColorPropertySet.hxx index 785f7f9482e6..772aa002ef46 100644 --- a/xmloff/source/chart/ColorPropertySet.hxx +++ b/xmloff/source/chart/ColorPropertySet.hxx @@ -20,6 +20,7 @@ #define XMLOFF_COLORPROPERTYSET_HXX #include <cppuhelper/implbase.hxx> +#include <tools/color.hxx> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertyState.hpp> @@ -71,8 +72,8 @@ protected: private: css::uno::Reference< css::beans::XPropertySetInfo > m_xInfo; OUString m_aColorPropName; - sal_Int32 m_nColor; - sal_Int32 m_nDefaultColor; + Color m_nColor; + Color m_nDefaultColor; }; } // namespace chart |