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/xmlimppr.cxx | |
parent | ab4853d8c42589b612daee1a3e99cf97ba1d9873 (diff) |
remove the last changes because the performance would be bad
Diffstat (limited to 'xmloff/source/style/xmlimppr.cxx')
-rw-r--r-- | xmloff/source/style/xmlimppr.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/xmloff/source/style/xmlimppr.cxx b/xmloff/source/style/xmlimppr.cxx index b466b2fea466..becefb7d93ba 100644 --- a/xmloff/source/style/xmlimppr.cxx +++ b/xmloff/source/style/xmlimppr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlimppr.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * 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 @@ -285,14 +285,15 @@ void SvXMLImportPropertyMapper::importXML( finished( rProperties, nStartIdx, nEndIdx ); - std::vector <XMLPropertyState>::iterator aItr = rProperties.begin(); + // Have to do if we change from a vector to a list or something like that + /*std::vector <XMLPropertyState>::iterator aItr = rProperties.begin(); while (aItr != rProperties.end()) { if (aItr->mnIndex == -1) aItr = rProperties.erase(aItr); else aItr++; - } + }*/ } /** this method is called for every item that has the MID_FLAG_SPECIAL_ITEM_IMPORT flag set */ |