summaryrefslogtreecommitdiff
path: root/chart2/inc
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-10-15 16:25:11 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-11-19 13:47:37 +0100
commitca121aff307bcc0272282e04963679863df09b1e (patch)
tree3947de357b8f3e2f1f4bbbf0e47b3ca82cf54ef7 /chart2/inc
parentb4c78680e097254923decc71deaf8205f9737e3f (diff)
fix build
Change-Id: I776455675a066dad790bc6beac4aa545186d5192
Diffstat (limited to 'chart2/inc')
-rw-r--r--chart2/inc/DataSeriesState.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/chart2/inc/DataSeriesState.hxx b/chart2/inc/DataSeriesState.hxx
index 64b27d710694..061c467cf3d4 100644
--- a/chart2/inc/DataSeriesState.hxx
+++ b/chart2/inc/DataSeriesState.hxx
@@ -17,6 +17,7 @@
#include <map>
#include <com/sun/star/uno/Any.h>
+#include <com/sun/star/chart/MissingValueTreatment.hpp>
namespace chart {
@@ -49,7 +50,7 @@ struct DataSeriesProperties
// hopefully this vector is empty most of the time
std::vector< PropertyMap > aPointProps;
- com::sun::star::chart::MissingValueTreatment eMissingValueTreatment;
+ sal_Int32 eMissingValueTreatment;
};
struct Axis
@@ -68,7 +69,7 @@ struct DataSeriesState
DataSeriesProperties aProperties;
// also contains bubble chart bubble size
// apply values to properties with functor
- std::map<OUString, DataSeries> aMappedProperties;
+ std::map<OUString, DataSequence> aMappedProperties;
Axis aXAxis;
Axis aYAxis;
};