summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-02-26 13:40:58 +0000
committerOliver Bolte <obo@openoffice.org>2008-02-26 13:40:58 +0000
commitbe593b74dac0be5d7d8227b5cdaa03340fef7138 (patch)
treea978e22d60babc3a41c08f51f15e81331b6f17e0 /sax
parent044ddb2b26d021e50dc67ba23228568ecbe4588a (diff)
INTEGRATION: CWS custommeta (1.15.30); FILE MERGED
2008/02/26 10:39:53 mst 1.15.30.2: RESYNC: (1.15-1.16); FILE MERGED 2007/12/07 13:40:15 mst 1.15.30.1: - sax/source/expatwrap/attrlistimpl.{hxx,cxx}: rename class AttributeListImpl to AttributeList, in preparation for export
Diffstat (limited to 'sax')
-rw-r--r--sax/source/expatwrap/sax_expat.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sax/source/expatwrap/sax_expat.cxx b/sax/source/expatwrap/sax_expat.cxx
index a87fd51a950e..bf7ac52c3230 100644
--- a/sax/source/expatwrap/sax_expat.cxx
+++ b/sax/source/expatwrap/sax_expat.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sax_expat.cxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: ihi $ $Date: 2008-02-04 13:40:05 $
+ * last change: $Author: obo $ $Date: 2008-02-26 14:40:58 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -246,7 +246,7 @@ public: // module scope
Reference < XAttributeList > rAttrList;
- AttributeListImpl *pAttrList;
+ AttributeList *pAttrList;
// External entity stack
vector<struct Entity> vecEntity;
@@ -423,7 +423,7 @@ SaxExpatParser::SaxExpatParser( )
// performance-Improvment. Reference is needed when calling the startTag callback.
// Handing out the same object with every call is allowed (see sax-specification)
- m_pImpl->pAttrList = new AttributeListImpl;
+ m_pImpl->pAttrList = new AttributeList;
m_pImpl->rAttrList = Reference< XAttributeList > ( m_pImpl->pAttrList );
m_pImpl->bExceptionWasThrown = sal_False;