[Libreoffice-commits] .: vbahelper/source
Caolán McNamara
caolan at kemper.freedesktop.org
Tue Aug 23 06:38:57 PDT 2011
vbahelper/source/msforms/vbacontrol.cxx | 2 +-
vbahelper/source/msforms/vbamultipage.cxx | 3 +--
vbahelper/source/msforms/vbamultipage.hxx | 3 +--
3 files changed, 3 insertions(+), 5 deletions(-)
New commits:
commit 095c493edd34ea490c602a2b99a017561b286f61
Author: Caolán McNamara <caolanm at redhat.com>
Date: Tue Aug 23 14:38:00 2011 +0100
WaE: drop unused ctor argument
diff --git a/vbahelper/source/msforms/vbacontrol.cxx b/vbahelper/source/msforms/vbacontrol.cxx
index 8bebe60..195e34e 100644
--- a/vbahelper/source/msforms/vbacontrol.cxx
+++ b/vbahelper/source/msforms/vbacontrol.cxx
@@ -581,7 +581,7 @@ void SAL_CALL ScVbaControl::setTabIndex( sal_Int32 /*nTabIndex*/ ) throw (uno::R
else if ( xServiceInfo->supportsService( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.awt.UnoControlScrollBarModel") ) ) )
xVBAControl.set( new ScVbaScrollBar( xVbaParent, xContext, xControl, xModel, xGeoHelper.release() ) );
else if ( xServiceInfo->supportsService( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.awt.UnoMultiPageModel") ) ) )
- xVBAControl.set( new ScVbaMultiPage( xVbaParent, xContext, xControl, xModel, xGeoHelper.release(), xDialog ) );
+ xVBAControl.set( new ScVbaMultiPage( xVbaParent, xContext, xControl, xModel, xGeoHelper.release() ) );
else if ( xServiceInfo->supportsService( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.awt.UnoControlSpinButtonModel") ) ) )
xVBAControl.set( new ScVbaSpinButton( xVbaParent, xContext, xControl, xModel, xGeoHelper.release() ) );
else if ( xServiceInfo->supportsService( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.custom.awt.UnoControlSystemAXContainerModel") ) ) )
diff --git a/vbahelper/source/msforms/vbamultipage.cxx b/vbahelper/source/msforms/vbamultipage.cxx
index 902aeba..6064a28 100644
--- a/vbahelper/source/msforms/vbamultipage.cxx
+++ b/vbahelper/source/msforms/vbamultipage.cxx
@@ -72,8 +72,7 @@ ScVbaMultiPage::ScVbaMultiPage(
const uno::Reference< uno::XComponentContext >& xContext,
const uno::Reference< uno::XInterface >& xControl,
const uno::Reference< frame::XModel >& xModel,
- AbstractGeometryAttributes* pGeomHelper,
- const uno::Reference< awt::XControl >& xDialog ) :
+ AbstractGeometryAttributes* pGeomHelper) :
MultiPageImpl_BASE( xParent, xContext, xControl, xModel, pGeomHelper )
{
}
diff --git a/vbahelper/source/msforms/vbamultipage.hxx b/vbahelper/source/msforms/vbamultipage.hxx
index aa22922..a12db7c 100644
--- a/vbahelper/source/msforms/vbamultipage.hxx
+++ b/vbahelper/source/msforms/vbamultipage.hxx
@@ -46,8 +46,7 @@ public:
const css::uno::Reference< css::uno::XComponentContext >& xContext,
const css::uno::Reference< css::uno::XInterface >& xControl,
const css::uno::Reference< css::frame::XModel >& xModel,
- ov::AbstractGeometryAttributes* pGeomHelper,
- const css::uno::Reference< css::awt::XControl >& xDialog );
+ ov::AbstractGeometryAttributes* pGeomHelper);
// Attributes
virtual sal_Int32 SAL_CALL getValue() throw (css::uno::RuntimeException);
More information about the Libreoffice-commits
mailing list