summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-02-24 13:46:21 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-02-24 13:46:21 +0000
commit6f64b92b4fbf468ba6fbaaaf74d9cbcb357f901f (patch)
tree945e027be90cd6a5b52f1cfdb609236d8fea6787 /sc
parent30edf4defd4c029d10ee8ce72dd1f2b2a6f23107 (diff)
INTEGRATION: CWS cmcfixes2 (1.2.228); FILE MERGED
2005/02/14 09:35:36 cmc 1.2.228.1: #i42421# iterators != pointers
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/dpgroup.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/data/dpgroup.cxx b/sc/source/core/data/dpgroup.cxx
index 6e02d6ae1688..7f15fc8f6666 100644
--- a/sc/source/core/data/dpgroup.cxx
+++ b/sc/source/core/data/dpgroup.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dpgroup.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2004-08-03 11:30:50 $
+ * last change: $Author: vg $ $Date: 2005-02-24 14:46:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1214,7 +1214,7 @@ BOOL ScDPGroupTableData::HasCommonElement( const ScDPItemData& rFirstData, long
const ScDPGroupDimension* pSecondDim = NULL;
for ( ScDPGroupDimensionVec::const_iterator aIter(aGroups.begin()); aIter != aGroups.end(); aIter++ )
{
- const ScDPGroupDimension* pDim = aIter;
+ const ScDPGroupDimension* pDim = &(*aIter);
if ( pDim->GetGroupDim() == nFirstIndex )
pFirstDim = pDim;
else if ( pDim->GetGroupDim() == nSecondIndex )