diff options
author | Sascha Ballach <sab@openoffice.org> | 2000-10-26 09:41:37 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2000-10-26 09:41:37 +0000 |
commit | fe163baaac30ea0aa1e4df52accc662ee0d4bac0 (patch) | |
tree | 75a654ca4411f982f0d12f5feac59524dd0acaee /xmloff/source/style/xmlimppr.cxx | |
parent | d78114a00514b4486393ab676f2450b7a3b0a638 (diff) |
to finished method StartIndex and EndIndex added
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 511d4e996b23..5e8443c2cdde 100644 --- a/xmloff/source/style/xmlimppr.cxx +++ b/xmloff/source/style/xmlimppr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlimppr.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: mib $ $Date: 2000-10-26 08:35:07 $ + * last change: $Author: sab $ $Date: 2000-10-26 10:35:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -258,7 +258,7 @@ void SvXMLImportPropertyMapper::importXML( while( ( nIndex >= 0 ) && (( nFlags & MID_FLAG_MULTI_PROPERTY ) != 0 ) ); } - finished( rProperties ); + finished( rProperties, nStartIdx, nEndIdx ); } /** this method is called for every item that has the MID_FLAG_SPECIAL_ITEM_IMPORT flag set */ @@ -286,7 +286,8 @@ BOOL SvXMLImportPropertyMapper::handleNoItem( } void SvXMLImportPropertyMapper::finished( - vector< XMLPropertyState >& rProperties ) const + vector< XMLPropertyState >& rProperties, + sal_Int32 nStartIndex, sal_Int32 nEndIndex ) const { // nothing to do here } |