diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-11-14 11:49:31 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-11-14 11:50:26 +0100 |
commit | b11bd0323ee3dc44c6f343d1eed00151e02e9851 (patch) | |
tree | 3bf904470b651ef0a647fab125d896a6b55fcbb0 /xmloff | |
parent | e3712f9d350a4dbef0951e72f0de9a31eabba065 (diff) |
Removed comphelper -> unotools processfactory.hxx duplication.
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/inc/pch/precompiled_xmloff.hxx | 1 | ||||
-rw-r--r-- | xmloff/source/core/DomBuilderContext.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/core/DomExport.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/xforms/xformsapi.cxx | 4 |
4 files changed, 4 insertions, 6 deletions
diff --git a/xmloff/inc/pch/precompiled_xmloff.hxx b/xmloff/inc/pch/precompiled_xmloff.hxx index 22f11be546ca..ee46c7c826f6 100644 --- a/xmloff/inc/pch/precompiled_xmloff.hxx +++ b/xmloff/inc/pch/precompiled_xmloff.hxx @@ -463,7 +463,6 @@ #include "unotools/bootstrap.hxx" #include "unotools/charclass.hxx" #include "unotools/configmgr.hxx" -#include "unotools/processfactory.hxx" #include "unotools/streamwrap.hxx" #include "tools/fldunit.hxx" diff --git a/xmloff/source/core/DomBuilderContext.cxx b/xmloff/source/core/DomBuilderContext.cxx index aa6990f3b750..f97ff97135cb 100644 --- a/xmloff/source/core/DomBuilderContext.cxx +++ b/xmloff/source/core/DomBuilderContext.cxx @@ -48,7 +48,7 @@ #include <rtl/ustring.hxx> #include <tools/debug.hxx> -#include <unotools/processfactory.hxx> +#include <comphelper/processfactory.hxx> using com::sun::star::lang::XMultiServiceFactory; @@ -197,7 +197,7 @@ const sal_Char sDocumentBuilder[] = "com.sun.star.xml.dom.DocumentBuilder"; Reference<XNode> lcl_createDomInstance() { - Reference<XMultiServiceFactory> xFactory = utl::getProcessServiceFactory(); + Reference<XMultiServiceFactory> xFactory = comphelper::getProcessServiceFactory(); DBG_ASSERT( xFactory.is(), "can't get service factory" ); Reference<XDocumentBuilder> xBuilder( diff --git a/xmloff/source/core/DomExport.cxx b/xmloff/source/core/DomExport.cxx index 74da38f20c1f..2dc236e2652d 100644 --- a/xmloff/source/core/DomExport.cxx +++ b/xmloff/source/core/DomExport.cxx @@ -52,7 +52,6 @@ #include <rtl/ustrbuf.hxx> #include <tools/debug.hxx> -#include <unotools/processfactory.hxx> #include <vector> diff --git a/xmloff/source/xforms/xformsapi.cxx b/xmloff/source/xforms/xformsapi.cxx index f47e7aaeab4f..d5b38a8c543e 100644 --- a/xmloff/source/xforms/xformsapi.cxx +++ b/xmloff/source/xforms/xformsapi.cxx @@ -41,7 +41,7 @@ #include <com/sun/star/container/XNameContainer.hpp> #include <com/sun/star/xsd/DataTypeClass.hpp> -#include <unotools/processfactory.hxx> +#include <comphelper/processfactory.hxx> #include <tools/debug.hxx> #include <xmloff/xmltoken.hxx> @@ -60,7 +60,7 @@ using com::sun::star::lang::XMultiServiceFactory; using com::sun::star::xforms::XFormsSupplier; using com::sun::star::xforms::XDataTypeRepository; using com::sun::star::container::XNameContainer; -using utl::getProcessServiceFactory; +using comphelper::getProcessServiceFactory; using com::sun::star::uno::makeAny; using com::sun::star::uno::Any; using com::sun::star::uno::Exception; |