From 89c77994d4638c86635c70535fab6508e2f3d900 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 30 Jun 2015 14:35:23 +0200 Subject: remove some unnecessary typedefs around uno::Reference Not very useful these days, since we have the css:: prefix to reduce verbosity. Found with a search like: git grep -nP 'typedef .*uno::Reference.*<.*>\s+\w+;' | grep -v 'std::' Change-Id: I16f41c53837ec5c613545ae45df38b0daddcbadd Reviewed-on: https://gerrit.libreoffice.org/16730 Tested-by: Jenkins Reviewed-by: Noel Grandin --- uui/source/iahndl.hxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'uui') diff --git a/uui/source/iahndl.hxx b/uui/source/iahndl.hxx index 1059b3c0a28b..86897db51d19 100644 --- a/uui/source/iahndl.hxx +++ b/uui/source/iahndl.hxx @@ -75,8 +75,6 @@ struct InteractionHandlerData typedef std::vector< InteractionHandlerData > InteractionHandlerDataList; -typedef ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionContinuation > > Continuations; - typedef std::unordered_map< OUString, OUString, OUStringHash > StringHashMap; class UUIInteractionHelper @@ -289,7 +287,7 @@ private: handleAuthFallbackRequest( OUString & instructions, OUString & url, - Continuations const & rContinuations ); + css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > const & rContinuations ); }; class ErrorResource: private Resource -- cgit