summaryrefslogtreecommitdiff
path: root/uui/source/requeststringresolver.hxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2016-09-07 20:10:26 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2016-10-13 20:26:24 +0200
commit22b0c09f8463b9c6cceb9e2c3addcab79d42aa0b (patch)
treecfb7d6401c2c0d77c9949cb4bf4281b4301c4ef7 /uui/source/requeststringresolver.hxx
parent3b6f7f38100c9c9d799756ffddbf281bf49364f4 (diff)
tdf#74608: Ctor function for css.comp.uui.UUIInteractionRequestStringResolver
Change-Id: I42c0c2cc8797647aa9dd676034137a1430e42fee
Diffstat (limited to 'uui/source/requeststringresolver.hxx')
-rw-r--r--uui/source/requeststringresolver.hxx16
1 files changed, 2 insertions, 14 deletions
diff --git a/uui/source/requeststringresolver.hxx b/uui/source/requeststringresolver.hxx
index 4ebbee0d3ce0..e6dc745f2ab7 100644
--- a/uui/source/requeststringresolver.hxx
+++ b/uui/source/requeststringresolver.hxx
@@ -21,7 +21,6 @@
#define INCLUDED_UUI_SOURCE_REQUESTSTRINGRESOLVER_HXX
#include <com/sun/star/lang/XServiceInfo.hpp>
-#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/task/XInteractionRequestStringResolver.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <cppuhelper/implbase.hxx>
@@ -35,16 +34,8 @@ class UUIInteractionRequestStringResolver:
css::task::XInteractionRequestStringResolver >
{
public:
- static char const m_aImplementationName[];
-
- static css::uno::Sequence< OUString >
- getSupportedServiceNames_static();
-
- static css::uno::Reference< css::uno::XInterface >
- SAL_CALL
- createInstance(
- css::uno::Reference< css::lang::XMultiServiceFactory > const &
- rServiceFactory);
+ explicit UUIInteractionRequestStringResolver(
+ css::uno::Reference< css::uno::XComponentContext > const & rxContext);
private:
std::unique_ptr<UUIInteractionHelper> m_pImpl;
@@ -52,9 +43,6 @@ private:
UUIInteractionRequestStringResolver(UUIInteractionRequestStringResolver &) = delete;
void operator =(UUIInteractionRequestStringResolver&) = delete;
- explicit UUIInteractionRequestStringResolver(
- css::uno::Reference< css::uno::XComponentContext > const & rxContext);
-
virtual ~UUIInteractionRequestStringResolver() override;
virtual OUString SAL_CALL getImplementationName()