summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-05-04 09:45:47 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-05-04 09:45:47 +0000
commiteb05a9434729cfb6f3a3f6b78b5288cb874cde1f (patch)
treee11a75898897ed574f48249a07685a6259c98dde /linguistic
parent10c04f854af2ac56a7ca7c5096455acd7ed44bfe (diff)
#110680#, #i10000#: Constructor of SvXMLExport / SvXMLImport now needs a getProcessServiceFactory() as first parameter.
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/convdicxml.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/linguistic/source/convdicxml.hxx b/linguistic/source/convdicxml.hxx
index 76bf554f0a03..28bf8e1faf86 100644
--- a/linguistic/source/convdicxml.hxx
+++ b/linguistic/source/convdicxml.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: convdicxml.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2004-04-27 16:06:48 $
+ * last change: $Author: rt $ $Date: 2004-05-04 10:45:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -119,7 +119,7 @@ public:
ConvDicXMLExport( ConvDic &rConvDic,
const rtl::OUString &rFileName,
com::sun::star::uno::Reference< com::sun::star::xml::sax::XDocumentHandler > &rHandler) :
- SvXMLExport ( rFileName, rHandler ),
+ SvXMLExport ( utl::getProcessServiceFactory(), rFileName, rHandler ),
rDic ( rConvDic ),
bSuccess ( sal_False )
{
@@ -158,7 +158,7 @@ public:
//!! see comment for pDic member
ConvDicXMLImport( ConvDic *pConvDic, const rtl::OUString &rFileName ) :
- SvXMLImport ( IMPORT_ALL ),
+ SvXMLImport ( utl::getProcessServiceFactory(), IMPORT_ALL ),
pDic ( pConvDic )
{
nLanguage = LANGUAGE_NONE;