diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-08-31 13:59:51 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-08-31 13:59:51 +0000 |
commit | a77a767d0a5c035a48aaaed88905d106a58fc0f4 (patch) | |
tree | 1d990c90b41912e53dd09869c3c4592a1fb36708 /configmgr | |
parent | 455eb696bbf0c646ccdb7fda0274951dcfd3777a (diff) |
INTEGRATION: CWS cfglogging (1.5.120); FILE MERGED
2004/08/27 07:49:02 jb 1.5.120.1: #i25940#,#i25939# Add log output to parsing services
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/xml/parsersvc.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configmgr/source/xml/parsersvc.hxx b/configmgr/source/xml/parsersvc.hxx index 7e154834f8a1..50a999f75e85 100644 --- a/configmgr/source/xml/parsersvc.hxx +++ b/configmgr/source/xml/parsersvc.hxx @@ -2,9 +2,9 @@ * * $RCSfile: parsersvc.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2003-04-17 13:35:46 $ + * last change: $Author: kz $ $Date: 2004-08-31 14:59:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -145,16 +145,16 @@ namespace configmgr protected: typedef uno::Reference< sax::XDocumentHandler > SaxHandler; - typedef uno::Reference< lang::XMultiServiceFactory > ServiceFactory; + typedef uno::Reference< uno::XComponentContext > Context; - ServiceFactory getServiceFactory() const - { return m_xServiceFactory; } + Context getContext() const + { return m_xContext; } void parse(SaxHandler const & _xHandler); // throw (backenduno::MalformedDataException, lang::WrappedTargetException, uno::RuntimeException); private: - ServiceFactory m_xServiceFactory; + Context m_xContext; sax::InputSource m_aInputSource; static ServiceInfoHelper getServiceInfo(); |