summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorPeter Burow <pb@openoffice.org>2000-10-23 11:22:53 +0000
committerPeter Burow <pb@openoffice.org>2000-10-23 11:22:53 +0000
commit0a7e72ab40fb89bc7b1ec30a1a0a214a763ef59b (patch)
tree5065ba3f75aa399d3919d9f29bd8c648a8e4bc30 /svx
parentb758c2b2b5276e3e5a930e169e3273ffbc1c144e (diff)
chg: unotools -> comphelper
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdoole2.cxx8
-rw-r--r--svx/source/svdraw/svdouno.cxx10
-rw-r--r--svx/source/svdraw/svdpagv.cxx12
3 files changed, 15 insertions, 15 deletions
diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx
index 055a5f864942..6f7fb1002fb7 100644
--- a/svx/source/svdraw/svdoole2.cxx
+++ b/svx/source/svdraw/svdoole2.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdoole2.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:01:25 $
+ * last change: $Author: pb $ $Date: 2000-10-23 12:14:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -63,7 +63,7 @@
#include <com/sun/star/util/XModifyBroadcaster.hpp>
#endif
-#include <unotools/processfactory.hxx>
+#include <comphelper/processfactory.hxx>
#ifdef SVX_LIGHT
#define SV_DECL_SDROLELINK_DEFINED
@@ -1263,7 +1263,7 @@ void SvInPlaceObject::CreatePlugin( uno::Reference< awt::XToolkit > xToolkit,
pArgs[i] = rCmd.GetArgument();
}
- uno::Reference< lang::XMultiServiceFactory > xFactory( ::utl::getProcessServiceFactory() );
+ uno::Reference< lang::XMultiServiceFactory > xFactory( ::comphelper::getProcessServiceFactory() );
if( xFactory.is() )
{
uno::Reference< plugin::XPluginManager > xPMgr( xFactory->createInstance( rtl::OUString::createFromAscii("com.sun.star.plugin.PluginManager")), uno::UNO_QUERY );
diff --git a/svx/source/svdraw/svdouno.cxx b/svx/source/svdraw/svdouno.cxx
index feafadd3f7d4..ecfa6afd4345 100644
--- a/svx/source/svdraw/svdouno.cxx
+++ b/svx/source/svdraw/svdouno.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdouno.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: aw $ $Date: 2000-09-27 14:03:58 $
+ * last change: $Author: pb $ $Date: 2000-10-23 12:14:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -93,7 +93,7 @@
#include <com/sun/star/io/XObjectInputStream.hpp>
#endif
-#include <unotools/processfactory.hxx>
+#include <comphelper/processfactory.hxx>
#include "svdouno.hxx"
#include "svdxout.hxx"
@@ -421,7 +421,7 @@ void SdrUnoObj::operator = (const SdrObject& rObj)
// Kopieren des UnoModels
uno::Reference< io::XPersistObject > xObj(((SdrUnoObj&) rObj).GetUnoControlModel(), uno::UNO_QUERY );
- uno::Reference< lang::XMultiServiceFactory > xFactory( ::utl::getProcessServiceFactory() );
+ uno::Reference< lang::XMultiServiceFactory > xFactory( ::comphelper::getProcessServiceFactory() );
if (xObj.is() && xFactory.is() )
{
// copy it by streaming
@@ -598,7 +598,7 @@ void SdrUnoObj::CreateUnoControlModel(const String& rModelName)
aUnoControlModelTypeName = rModelName;
uno::Reference< awt::XControlModel > xModel;
- uno::Reference< lang::XMultiServiceFactory > xFactory( ::utl::getProcessServiceFactory() );
+ uno::Reference< lang::XMultiServiceFactory > xFactory( ::comphelper::getProcessServiceFactory() );
if (aUnoControlModelTypeName.Len() && xFactory.is() )
{
xModel = uno::Reference< awt::XControlModel >(xFactory->createInstance(
diff --git a/svx/source/svdraw/svdpagv.cxx b/svx/source/svdraw/svdpagv.cxx
index 52057cecbd32..aed80686bbcd 100644
--- a/svx/source/svdraw/svdpagv.cxx
+++ b/svx/source/svdraw/svdpagv.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdpagv.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: aw $ $Date: 2000-09-27 14:03:58 $
+ * last change: $Author: pb $ $Date: 2000-10-23 12:14:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,7 +81,7 @@
#include <com/sun/star/lang/XComponent.hpp>
#endif
-#include <unotools/processfactory.hxx>
+#include <comphelper/processfactory.hxx>
#ifndef _VOS_MUTEX_HXX_
#include <vos/mutex.hxx>
@@ -299,7 +299,7 @@ void SAL_CALL SdrUnoControlRec::propertyChange( const ::com::sun::star::beans::P
if (evt.PropertyName == rtl::OUString::createFromAscii("DefaultControl"))
{
// anlegen eines neuen Controls
- uno::Reference< lang::XMultiServiceFactory > xFactory( ::utl::getProcessServiceFactory() );
+ uno::Reference< lang::XMultiServiceFactory > xFactory( ::comphelper::getProcessServiceFactory() );
if( xFactory.is() )
{
OUString aControlName;
@@ -655,7 +655,7 @@ void SdrPageViewWinRec::CreateControlContainer()
else
{
// Printer und VirtualDevice, bzw. kein OutDev
- uno::Reference< lang::XMultiServiceFactory > xFactory( ::utl::getProcessServiceFactory() );
+ uno::Reference< lang::XMultiServiceFactory > xFactory( ::comphelper::getProcessServiceFactory() );
if( xFactory.is() )
{
xControlContainer = uno::Reference< awt::XControlContainer >(xFactory->createInstance(rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlContainer")), uno::UNO_QUERY);
@@ -822,7 +822,7 @@ void SdrPageView::ImpInsertControl(const SdrUnoObj* pSdrUnoObj,
if (nCtrlNum == SDRUNOCONTROL_NOTFOUND)
{
// Control fuer die View erzeugen
- uno::Reference< lang::XMultiServiceFactory > xFactory( ::utl::getProcessServiceFactory() );
+ uno::Reference< lang::XMultiServiceFactory > xFactory( ::comphelper::getProcessServiceFactory() );
uno::Reference< awt::XControl > xUnoControl;
if( xFactory.is() )
xUnoControl = uno::Reference< awt::XControl >(xFactory->createInstance(pSdrUnoObj->GetUnoControlTypeName()), uno::UNO_QUERY);