From bb121c864cc3c101ef733a4088c7ba3e36eced14 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 14 Dec 2012 12:58:00 +0200 Subject: fdo#46808, Convert frame::Desktop to new style service. I had to drop XEventBroadcaster from the merged interface because it introduced method name conflicts (addEventListener). Shouldn't be an issue since it was scheduled to be dropped anyhow, and the service implementation still implements it, so existing clients will be fine. I dropped the interface XPropertySet from the combined IDL because nobody seems to be using it, and it's primary purpose appears to be to set weird flags. I dropped the optional interfaces XStatusIndicatorFactory XDispatchInformationProvider from the combined IDL because the service does not implement them, and nobody seems to be using them. I suspect they were mistakenly copied from XFrame. I also did not convert the Title, UserDefinedAttributes and LayoutManager properties to attributes, again because no-one is using them. Change-Id: I678a00006ed2cca2d6c37c4e39465811442c33af --- tubes/source/manager.cxx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'tubes') diff --git a/tubes/source/manager.cxx b/tubes/source/manager.cxx index b924e8f790df..1a152cec3ae8 100644 --- a/tubes/source/manager.cxx +++ b/tubes/source/manager.cxx @@ -34,6 +34,7 @@ #include #include +#include #include #include #include @@ -269,13 +270,8 @@ void TeleManager_fileReceived( const OUString& rStr, const OString& rUuid ) try { - css::uno::Reference< css::lang::XMultiServiceFactory > rFactory = - comphelper::getProcessServiceFactory(); - - css::uno::Reference < css::frame::XComponentLoader > xLoader( - ::comphelper::getProcessServiceFactory()->createInstance( - "com.sun.star.frame.Desktop" ), - css::uno::UNO_QUERY_THROW ); + css::uno::Reference < css::frame::XDesktop2 > xLoader = css::frame::Desktop::create( + ::comphelper::getProcessComponentContext() ); css::uno::Sequence < css::beans::PropertyValue > args(0); css::uno::Reference < css::util::XCloseable > xDoc( xLoader->loadComponentFromURL( rStr, "_blank", 0, args ), -- cgit v1.2.3