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 --- forms/source/component/GroupBox.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'forms/source/component/GroupBox.cxx') diff --git a/forms/source/component/GroupBox.cxx b/forms/source/component/GroupBox.cxx index 73792e17d25b..e0991979a616 100644 --- a/forms/source/component/GroupBox.cxx +++ b/forms/source/component/GroupBox.cxx @@ -57,9 +57,9 @@ OGroupBoxModel::OGroupBoxModel( const OGroupBoxModel* _pOriginal, const Referenc // XServiceInfo -StringSequence SAL_CALL OGroupBoxModel::getSupportedServiceNames() throw(RuntimeException, std::exception) +css::uno::Sequence SAL_CALL OGroupBoxModel::getSupportedServiceNames() throw(RuntimeException, std::exception) { - StringSequence aSupported = OControlModel::getSupportedServiceNames(); + css::uno::Sequence aSupported = OControlModel::getSupportedServiceNames(); aSupported.realloc(aSupported.getLength() + 2); OUString* pArray = aSupported.getArray(); @@ -128,9 +128,9 @@ OGroupBoxControl::OGroupBoxControl(const Reference& _rxFactor } -StringSequence SAL_CALL OGroupBoxControl::getSupportedServiceNames() throw(RuntimeException, std::exception) +css::uno::Sequence SAL_CALL OGroupBoxControl::getSupportedServiceNames() throw(RuntimeException, std::exception) { - StringSequence aSupported = OControl::getSupportedServiceNames(); + css::uno::Sequence aSupported = OControl::getSupportedServiceNames(); aSupported.realloc(aSupported.getLength() + 2); OUString* pArray = aSupported.getArray(); -- cgit