Kaydet (Commit) 095c493e authored tarafından Caolán McNamara's avatar Caolán McNamara

WaE: drop unused ctor argument

üst 0e9d0175
...@@ -581,7 +581,7 @@ void SAL_CALL ScVbaControl::setTabIndex( sal_Int32 /*nTabIndex*/ ) throw (uno::R ...@@ -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") ) ) ) else if ( xServiceInfo->supportsService( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.awt.UnoControlScrollBarModel") ) ) )
xVBAControl.set( new ScVbaScrollBar( xVbaParent, xContext, xControl, xModel, xGeoHelper.release() ) ); xVBAControl.set( new ScVbaScrollBar( xVbaParent, xContext, xControl, xModel, xGeoHelper.release() ) );
else if ( xServiceInfo->supportsService( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.awt.UnoMultiPageModel") ) ) ) 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") ) ) ) else if ( xServiceInfo->supportsService( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.awt.UnoControlSpinButtonModel") ) ) )
xVBAControl.set( new ScVbaSpinButton( xVbaParent, xContext, xControl, xModel, xGeoHelper.release() ) ); 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") ) ) ) else if ( xServiceInfo->supportsService( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.custom.awt.UnoControlSystemAXContainerModel") ) ) )
......
...@@ -72,8 +72,7 @@ ScVbaMultiPage::ScVbaMultiPage( ...@@ -72,8 +72,7 @@ ScVbaMultiPage::ScVbaMultiPage(
const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< uno::XComponentContext >& xContext,
const uno::Reference< uno::XInterface >& xControl, const uno::Reference< uno::XInterface >& xControl,
const uno::Reference< frame::XModel >& xModel, const uno::Reference< frame::XModel >& xModel,
AbstractGeometryAttributes* pGeomHelper, AbstractGeometryAttributes* pGeomHelper) :
const uno::Reference< awt::XControl >& xDialog ) :
MultiPageImpl_BASE( xParent, xContext, xControl, xModel, pGeomHelper ) MultiPageImpl_BASE( xParent, xContext, xControl, xModel, pGeomHelper )
{ {
} }
......
...@@ -46,8 +46,7 @@ public: ...@@ -46,8 +46,7 @@ public:
const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::uno::XComponentContext >& xContext,
const css::uno::Reference< css::uno::XInterface >& xControl, const css::uno::Reference< css::uno::XInterface >& xControl,
const css::uno::Reference< css::frame::XModel >& xModel, const css::uno::Reference< css::frame::XModel >& xModel,
ov::AbstractGeometryAttributes* pGeomHelper, ov::AbstractGeometryAttributes* pGeomHelper);
const css::uno::Reference< css::awt::XControl >& xDialog );
// Attributes // Attributes
virtual sal_Int32 SAL_CALL getValue() throw (css::uno::RuntimeException); virtual sal_Int32 SAL_CALL getValue() throw (css::uno::RuntimeException);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment