From d21260cdb6e6fa898ed90bafb41ba4fe5dd3140c Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 19 Aug 2015 13:34:43 +0200 Subject: Remove two silly typedefs Change-Id: Ia7de1cebf6009e770ca1b96bab6d5e121573ccc1 --- extensions/source/abpilot/unodialogabp.cxx | 6 +++--- extensions/source/abpilot/unodialogabp.hxx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'extensions/source/abpilot') diff --git a/extensions/source/abpilot/unodialogabp.cxx b/extensions/source/abpilot/unodialogabp.cxx index 990b313b7003..6077f0124b6c 100644 --- a/extensions/source/abpilot/unodialogabp.cxx +++ b/extensions/source/abpilot/unodialogabp.cxx @@ -101,15 +101,15 @@ namespace abp } - ::comphelper::StringSequence SAL_CALL OABSPilotUno::getSupportedServiceNames() throw(RuntimeException, std::exception) + css::uno::Sequence SAL_CALL OABSPilotUno::getSupportedServiceNames() throw(RuntimeException, std::exception) { return getSupportedServiceNames_Static(); } - ::comphelper::StringSequence OABSPilotUno::getSupportedServiceNames_Static() throw(RuntimeException) + css::uno::Sequence OABSPilotUno::getSupportedServiceNames_Static() throw(RuntimeException) { - ::comphelper::StringSequence aSupported(1); + css::uno::Sequence aSupported(1); aSupported[0] = "com.sun.star.ui.dialogs.AddressBookSourcePilot"; return aSupported; } diff --git a/extensions/source/abpilot/unodialogabp.hxx b/extensions/source/abpilot/unodialogabp.hxx index d9ff05739f5c..ba4c6205e8c1 100644 --- a/extensions/source/abpilot/unodialogabp.hxx +++ b/extensions/source/abpilot/unodialogabp.hxx @@ -56,7 +56,7 @@ namespace abp // XServiceInfo virtual OUString SAL_CALL getImplementationName() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; - virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual css::uno::Sequence SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XServiceInfo - static methods static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static() throw( ::com::sun::star::uno::RuntimeException ); -- cgit