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 --- svtools/source/uno/addrtempuno.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svtools/source') diff --git a/svtools/source/uno/addrtempuno.cxx b/svtools/source/uno/addrtempuno.cxx index 7489dfbfa315..9ae5cbd38561 100644 --- a/svtools/source/uno/addrtempuno.cxx +++ b/svtools/source/uno/addrtempuno.cxx @@ -58,7 +58,7 @@ namespace { // XServiceInfo virtual OUString SAL_CALL getImplementationName() throw(RuntimeException, std::exception) SAL_OVERRIDE; - virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(RuntimeException, std::exception) SAL_OVERRIDE; + virtual css::uno::Sequence SAL_CALL getSupportedServiceNames() throw(RuntimeException, std::exception) SAL_OVERRIDE; // XPropertySet virtual Reference< XPropertySetInfo> SAL_CALL getPropertySetInfo() throw(RuntimeException, std::exception) SAL_OVERRIDE; @@ -99,9 +99,9 @@ namespace { } - ::comphelper::StringSequence SAL_CALL OAddressBookSourceDialogUno::getSupportedServiceNames() throw(RuntimeException, std::exception) + css::uno::Sequence SAL_CALL OAddressBookSourceDialogUno::getSupportedServiceNames() throw(RuntimeException, std::exception) { - ::comphelper::StringSequence aSupported(1); + css::uno::Sequence aSupported(1); aSupported.getArray()[0] = "com.sun.star.ui.AddressBookSourceDialog"; return aSupported; } -- cgit