diff options
author | Björn Milcke <bm@openoffice.org> | 2001-01-08 11:54:50 +0000 |
---|---|---|
committer | Björn Milcke <bm@openoffice.org> | 2001-01-08 11:54:50 +0000 |
commit | feaf5439647f8f49093c7c477b0dcbc45ca0cf6c (patch) | |
tree | 8e9052514fb7b8e1e23765a958ee7b6c697bcd18 /xmloff | |
parent | b8f9990a0fa137580a3446a0daf1df553e3b60b6 (diff) |
#81826# import the attachment to an axis correctly
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLPlotAreaContext.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xmloff/source/chart/SchXMLPlotAreaContext.hxx b/xmloff/source/chart/SchXMLPlotAreaContext.hxx index ef5db8f0875e..eb3a0dc6bb17 100644 --- a/xmloff/source/chart/SchXMLPlotAreaContext.hxx +++ b/xmloff/source/chart/SchXMLPlotAreaContext.hxx @@ -2,9 +2,9 @@ * * $RCSfile: SchXMLPlotAreaContext.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: bm $ $Date: 2000-12-15 17:54:01 $ + * last change: $Author: bm $ $Date: 2001-01-08 12:54:50 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -145,16 +145,19 @@ class SchXMLSeriesContext : public SvXMLImportContext private: SchXMLImportHelper& mrImportHelper; com::sun::star::uno::Reference< com::sun::star::chart::XDiagram > mxDiagram; + std::vector< SchXMLAxis >& mrAxes; com::sun::star::chart::ChartSeriesAddress& mrSeriesAddress; rtl::OUString msAutoStyleName; sal_Int32 mnSeriesIndex; sal_Int32 mnDataPointIndex; sal_Int32& mrDomainOffset; + SchXMLAxis* mpAttachedAxis; public: SchXMLSeriesContext( SchXMLImportHelper& rImpHelper, SvXMLImport& rImport, const rtl::OUString& rLocalName, com::sun::star::uno::Reference< com::sun::star::chart::XDiagram >& xDiagram, + std::vector< SchXMLAxis >& rAxes, com::sun::star::chart::ChartSeriesAddress& rSeriesAddress, sal_Int32 nSeriesIndex, sal_Int32& rDomainOffset ); |