diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-03-09 21:29:31 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-03-09 21:29:31 -0500 |
commit | bdd349501eb3df24830d2daf2338a7a422a8e00c (patch) | |
tree | aab4327bd1e672b5da86bb2b33ee7538430917f5 /sc/inc/dpgroup.hxx | |
parent | 372cfda4d6a4d49bb45cea0dc45b23ffd9dd5b3d (diff) |
Keep vector as vector.
Diffstat (limited to 'sc/inc/dpgroup.hxx')
-rw-r--r-- | sc/inc/dpgroup.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/dpgroup.hxx b/sc/inc/dpgroup.hxx index be7d39cd784a..b81db64d26d5 100644 --- a/sc/inc/dpgroup.hxx +++ b/sc/inc/dpgroup.hxx @@ -163,7 +163,7 @@ class ScDPGroupTableData : public ScDPTableData ScDocument* pDoc; StringHashSet aGroupNames; - void FillGroupValues( SCROW* pItemDataIndex, long nCount, const long* pDims ); + void FillGroupValues(std::vector<SCROW>& rItems, const std::vector<long>& rDims); virtual long GetSourceDim( long nDim ); bool IsNumGroupDimension( long nDimension ) const; |