diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 14:01:22 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 14:01:22 +0000 |
commit | c96704f189f827dc42e750b171d1ea74313e3ce4 (patch) | |
tree | ff6b5283b2ea43537e9b7f839b3ce4f9a3b355a3 /xmloff | |
parent | 3a72d74785afecf1402a35af419d165ee4e3675b (diff) |
INTEGRATION: CWS ooo20040704 (1.14.34); FILE MERGED
2004/08/10 13:12:13 vg 1.14.34.2: RESYNC: (1.14-1.15); FILE MERGED
2004/06/28 14:59:44 cmc 1.14.34.1: #i30801# allow using system stl if possible
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/txtimppr.cxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/xmloff/source/text/txtimppr.cxx b/xmloff/source/text/txtimppr.cxx index eb4cd57735f6..92ffacb3ffd9 100644 --- a/xmloff/source/text/txtimppr.cxx +++ b/xmloff/source/text/txtimppr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: txtimppr.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: rt $ $Date: 2004-07-13 08:41:14 $ + * last change: $Author: rt $ $Date: 2004-09-08 15:01:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -364,10 +364,11 @@ void XMLTextImportPropertyMapper::finished( XMLPropertyState* pBackTransparent = NULL; // transparency as boolean sal_uInt16 i; // for the "for" loop - for( ::std::vector< XMLPropertyState >::iterator property = rProperties.begin(); - property != rProperties.end(); - property++ ) + for( ::std::vector< XMLPropertyState >::iterator aIter = rProperties.begin(); + aIter != rProperties.end(); + ++aIter ) { + XMLPropertyState* property = &(*aIter); if( -1 == property->mnIndex ) continue; |