summaryrefslogtreecommitdiff
path: root/sax/source
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-10-11 13:14:30 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-10-11 13:14:30 +0000
commit7d32518485923feb4e0253be06f7a726ec21fe32 (patch)
tree88bd8cfea4bb658811b3eb3b4772fea37fd83096 /sax/source
parent2b8944ad8c6fbea00a49faed168efc31a9bad67e (diff)
#93054# fixed implementation names
Diffstat (limited to 'sax/source')
-rw-r--r--sax/source/expatwrap/sax_expat.cxx6
-rw-r--r--sax/source/expatwrap/saxwriter.cxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/sax/source/expatwrap/sax_expat.cxx b/sax/source/expatwrap/sax_expat.cxx
index 0e206b550548..2f1555008fd6 100644
--- a/sax/source/expatwrap/sax_expat.cxx
+++ b/sax/source/expatwrap/sax_expat.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sax_expat.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: tbe $ $Date: 2001-05-11 14:32:35 $
+ * last change: $Author: dbo $ $Date: 2001-10-11 14:14:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -239,7 +239,7 @@ Reference< XInterface > SAL_CALL SaxExpatParser_CreateInstance(
Sequence< OUString > SaxExpatParser::getSupportedServiceNames_Static(void) throw ()
{
Sequence<OUString> aRet(1);
- aRet.getArray()[0] = SaxExpatParser::getImplementationName_Static();
+ aRet.getArray()[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(SERVICE_NAME) );
return aRet;
}
diff --git a/sax/source/expatwrap/saxwriter.cxx b/sax/source/expatwrap/saxwriter.cxx
index 4141fda30b72..267c777c71a5 100644
--- a/sax/source/expatwrap/saxwriter.cxx
+++ b/sax/source/expatwrap/saxwriter.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: saxwriter.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: sab $ $Date: 2001-07-19 09:36:12 $
+ * last change: $Author: dbo $ $Date: 2001-10-11 14:14:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -500,7 +500,7 @@ OUString SaxWriter_getImplementationName() throw()
Sequence< OUString > SaxWriter_getSupportedServiceNames(void) throw()
{
Sequence<OUString> aRet(1);
- aRet.getArray()[0] = SaxWriter_getImplementationName();
+ aRet.getArray()[0] = SaxWriter_getServiceName();
return aRet;
}