summaryrefslogtreecommitdiff
path: root/uui/source/services.cxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-01-30 13:21:53 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2014-02-05 19:07:20 +0100
commitfe537786a42abea57551395f73328db48bebd086 (patch)
treefb718be5fcd9b7383bb3e489b0d929aaf9d86faf /uui/source/services.cxx
parent1d77f5ce5e13720d46b41fd3ee4c7fe1d92a9839 (diff)
uui: Ctor feature for com.sun.star.comp.uui.UUIInteractionHandler.
Change-Id: I94858cef5402e88ddcc3e0e9e4383f7be8443e77
Diffstat (limited to 'uui/source/services.cxx')
-rw-r--r--uui/source/services.cxx20
1 files changed, 1 insertions, 19 deletions
diff --git a/uui/source/services.cxx b/uui/source/services.cxx
index f2d7c76aaa2e..642f86379808 100644
--- a/uui/source/services.cxx
+++ b/uui/source/services.cxx
@@ -24,7 +24,6 @@
#include <sal/types.h>
#include <uno/environment.h>
-#include "interactionhandler.hxx"
#include "requeststringresolver.hxx"
#include "passwordcontainer.hxx"
@@ -48,27 +47,10 @@ extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL uui_component_getFactory(sal_Cha
Reference< XSingleServiceFactory > xFactory;
//////////////////////////////////////////////////////////////////////
- // UUI Interaction Handler.
- //////////////////////////////////////////////////////////////////////
-
- if ( rtl_str_compare(pImplName,
- UUIInteractionHandler::m_aImplementationName)
- == 0)
- {
- xFactory =
- cppu::createSingleFactory(
- static_cast< XMultiServiceFactory * >(pServiceManager),
- OUString::createFromAscii(
- UUIInteractionHandler::m_aImplementationName),
- &UUIInteractionHandler::createInstance,
- UUIInteractionHandler::getSupportedServiceNames_static());
- }
-
- //////////////////////////////////////////////////////////////////////
// UUI Interaction Request String Resolver.
//////////////////////////////////////////////////////////////////////
- else if ( rtl_str_compare(pImplName,
+ if ( rtl_str_compare(pImplName,
UUIInteractionRequestStringResolver::m_aImplementationName)
== 0)
{