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 /cui | |
parent | e3712f9d350a4dbef0951e72f0de9a31eabba065 (diff) |
Removed comphelper -> unotools processfactory.hxx duplication.
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/customize/acccfg.cxx | 4 | ||||
-rw-r--r-- | cui/source/customize/cfgutil.cxx | 2 | ||||
-rw-r--r-- | cui/source/dialogs/insdlg.cxx | 1 | ||||
-rw-r--r-- | cui/source/dialogs/plfilter.cxx | 4 |
4 files changed, 5 insertions, 6 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx index 9436944924eb..3f305a627c2a 100644 --- a/cui/source/customize/acccfg.cxx +++ b/cui/source/customize/acccfg.cxx @@ -67,7 +67,7 @@ //----------------------------------------------- // include other projects -#include <unotools/processfactory.hxx> +#include <comphelper/processfactory.hxx> #include <svtools/acceleratorexecute.hxx> #include <comphelper/processfactory.hxx> #include <svtools/svlbitm.hxx> @@ -850,7 +850,7 @@ void SfxAcceleratorConfigPage::InitAccCfg() try { // no - initialize this instance - m_xSMGR = ::utl::getProcessServiceFactory(); + m_xSMGR = ::comphelper::getProcessServiceFactory(); m_xUICmdDescription = css::uno::Reference< css::container::XNameAccess >(m_xSMGR->createInstance(SERVICE_UICMDDESCRIPTION), css::uno::UNO_QUERY_THROW); diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx index 6ae157ad4426..f2917e1f64d1 100644 --- a/cui/source/customize/cfgutil.cxx +++ b/cui/source/customize/cfgutil.cxx @@ -58,7 +58,7 @@ #include "cuires.hrc" #include <sfx2/app.hxx> #include <sfx2/minfitem.hxx> -#include <unotools/processfactory.hxx> +#include <comphelper/processfactory.hxx> #include <comphelper/documentinfo.hxx> #include <svtools/imagemgr.hxx> #include <rtl/ustrbuf.hxx> diff --git a/cui/source/dialogs/insdlg.cxx b/cui/source/dialogs/insdlg.cxx index a9eb0dcd4fac..18e4aa4ca871 100644 --- a/cui/source/dialogs/insdlg.cxx +++ b/cui/source/dialogs/insdlg.cxx @@ -68,7 +68,6 @@ #include <com/sun/star/container/XHierarchicalNameAccess.hpp> #include <com/sun/star/container/XNameAccess.hpp> -#include <unotools/processfactory.hxx> using namespace ::com::sun::star; using namespace ::com::sun::star::lang; diff --git a/cui/source/dialogs/plfilter.cxx b/cui/source/dialogs/plfilter.cxx index 407a0c29d9bc..f1bd7f744377 100644 --- a/cui/source/dialogs/plfilter.cxx +++ b/cui/source/dialogs/plfilter.cxx @@ -28,7 +28,7 @@ #include <set> #include <map> -#include <unotools/processfactory.hxx> +#include <comphelper/processfactory.hxx> #include <tools/debug.hxx> #include <vcl/stdtext.hxx> @@ -57,7 +57,7 @@ typedef map< String, StrSet, ltstr > FilterMap; //================================================================================================== void fillNetscapePluginFilters( Sequence< rtl::OUString >& rPluginNames, Sequence< rtl::OUString >& rPluginTypes ) { - Reference< XMultiServiceFactory > xMan( ::utl::getProcessServiceFactory() ); + Reference< XMultiServiceFactory > xMan( ::comphelper::getProcessServiceFactory() ); Reference< XPluginManager > xPMgr( xMan->createInstance( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.plugin.PluginManager") ) ), UNO_QUERY ); |