diff options
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/dpoutput.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sc/inc/dpoutput.hxx b/sc/inc/dpoutput.hxx index 9f9fdcf308a5..ecd933c22814 100644 --- a/sc/inc/dpoutput.hxx +++ b/sc/inc/dpoutput.hxx @@ -48,12 +48,9 @@ private: ScDocument* pDoc; css::uno::Reference< css::sheet::XDimensionsSupplier> xSource; ScAddress aStartPos; - ScDPOutLevelData* pColFields; - ScDPOutLevelData* pRowFields; - ScDPOutLevelData* pPageFields; - long nColFieldCount; - long nRowFieldCount; - long nPageFieldCount; + std::vector<ScDPOutLevelData> pColFields; + std::vector<ScDPOutLevelData> pRowFields; + std::vector<ScDPOutLevelData> pPageFields; css::uno::Sequence< css::uno::Sequence< css::sheet::DataResult> > aData; OUString aDataDescription; |