diff options
author | Sascha Ballach <sab@openoffice.org> | 2000-12-15 12:52:14 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2000-12-15 12:52:14 +0000 |
commit | d28ae0718b3e3a9120dbaa641245462b6407d511 (patch) | |
tree | 484a85cb3a37aeb122fb17e293d217983fb3b525 /xmloff/source/style/xmlexppr.cxx | |
parent | ab4853d8c42589b612daee1a3e99cf97ba1d9873 (diff) |
remove the last changes because the performance would be bad
Diffstat (limited to 'xmloff/source/style/xmlexppr.cxx')
-rw-r--r-- | xmloff/source/style/xmlexppr.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/xmloff/source/style/xmlexppr.cxx b/xmloff/source/style/xmlexppr.cxx index cc176c1c77a6..09a1fb2e48f7 100644 --- a/xmloff/source/style/xmlexppr.cxx +++ b/xmloff/source/style/xmlexppr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlexppr.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: sab $ $Date: 2000-12-15 11:50:34 $ + * last change: $Author: sab $ $Date: 2000-12-15 13:52:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -243,14 +243,16 @@ vector< XMLPropertyState > SvXMLExportPropertyMapper::Filter( // Call centext-filter ContextFilter( aPropStateArray, xPropSet ); - vector< XMLPropertyState >::iterator aItr = aPropStateArray.begin(); + + // Have to do if we change from a vector to a list or something like that + /*vector< XMLPropertyState >::iterator aItr = aPropStateArray.begin(); while (aItr != aPropStateArray.end()) { if (aItr->mnIndex == -1) aItr = aPropStateArray.erase(aItr); else aItr++; - } + }*/ } return aPropStateArray; |