summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-01-05 10:36:42 +0000
committerOliver Bolte <obo@openoffice.org>2005-01-05 10:36:42 +0000
commit573fbd43261775370fa64fbf2d0693358fc8bf55 (patch)
tree3ebea77cfca3efec5d4b485daa8601e0d94e9aa7
parent13180a1e69fc88cbb4786ce182f4d2320f1dca1a (diff)
INTEGRATION: CWS swqcore02 (1.18.106); FILE MERGED
2004/11/24 16:00:29 dvo 1.18.106.1: #i30054# prevent name-collision of styles and automatic-styles in storage format
-rw-r--r--xmloff/source/style/xmlaustp.cxx26
1 files changed, 24 insertions, 2 deletions
diff --git a/xmloff/source/style/xmlaustp.cxx b/xmloff/source/style/xmlaustp.cxx
index f4be1f3610..7e07fbb3a9 100644
--- a/xmloff/source/style/xmlaustp.cxx
+++ b/xmloff/source/style/xmlaustp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlaustp.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: rt $ $Date: 2004-07-13 08:26:02 $
+ * last change: $Author: obo $ $Date: 2005-01-05 11:36:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -380,6 +380,28 @@ void SvXMLAutoStylePoolP::RegisterName( sal_Int32 nFamily,
pImpl->RegisterName( nFamily, rName );
}
+void SvXMLAutoStylePoolP::GetRegisteredNames(
+ uno::Sequence<sal_Int32>& rFamilies,
+ uno::Sequence<OUString>& rNames )
+{
+ pImpl->GetRegisteredNames( rFamilies, rNames );
+}
+
+void SvXMLAutoStylePoolP::RegisterNames(
+ uno::Sequence<sal_Int32>& aFamilies,
+ uno::Sequence<OUString>& aNames )
+{
+ DBG_ASSERT( aFamilies.getLength() == aNames.getLength(),
+ "aFamilies != aNames" );
+
+ // iterate over sequence(s) and call RegisterName(..) for each pair
+ const sal_Int32* pFamilies = aFamilies.getConstArray();
+ const OUString* pNames = aNames.getConstArray();
+ sal_Int32 nCount = min( aFamilies.getLength(), aNames.getLength() );
+ for( sal_Int32 n = 0; n < nCount; n++ )
+ RegisterName( pFamilies[n], pNames[n] );
+}
+
OUString SvXMLAutoStylePoolP::Add( sal_Int32 nFamily,
const vector< XMLPropertyState >& rProperties )
{