diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-19 20:52:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-20 08:53:03 +0100 |
commit | dc1785a3be7f5b527cf95410e1d6fd18a841880f (patch) | |
tree | 92bfa9c8c9361b7210caa84c18f6ecf10964be12 /toolkit | |
parent | 60a2e095f0d50776742947aa259f99369d799522 (diff) |
WaE unused parameter
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxwindows.cxx | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx index ac7a2395984b..a0284c9fd441 100644 --- a/toolkit/source/awt/vclxwindows.cxx +++ b/toolkit/source/awt/vclxwindows.cxx @@ -2303,7 +2303,7 @@ VCLXDialog::~VCLXDialog() ::com::sun::star::uno::Any VCLXDialog::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException) { ::com::sun::star::uno::Any aRet = ::cppu::queryInterface( rType, - SAL_STATIC_CAST( ::com::sun::star::document::XVbaMethodParameter*, this ), //liuchen 2009-6-23 + SAL_STATIC_CAST( ::com::sun::star::document::XVbaMethodParameter*, this ), SAL_STATIC_CAST( ::com::sun::star::awt::XDialog2*, this ), SAL_STATIC_CAST( ::com::sun::star::awt::XDialog*, this ) ); return (aRet.hasValue() ? aRet : VCLXTopWindow::queryInterface( rType )); @@ -2311,7 +2311,7 @@ VCLXDialog::~VCLXDialog() // ::com::sun::star::lang::XTypeProvider IMPL_XTYPEPROVIDER_START( VCLXDialog ) - getCppuType( ( ::com::sun::star::uno::Reference< ::com::sun::star::document::XVbaMethodParameter>* ) NULL ), //liuchen 2009-6-23 + getCppuType( ( ::com::sun::star::uno::Reference< ::com::sun::star::document::XVbaMethodParameter>* ) NULL ), getCppuType( ( ::com::sun::star::uno::Reference< ::com::sun::star::awt::XDialog2>* ) NULL ), getCppuType( ( ::com::sun::star::uno::Reference< ::com::sun::star::awt::XDialog>* ) NULL ), VCLXTopWindow::getTypes() @@ -2422,7 +2422,6 @@ void SAL_CALL VCLXDialog::draw( sal_Int32 nX, sal_Int32 nY ) throw(::com::sun::s return aInfo; } -//liuchen 2009-7-22 // ::com::sun::star::document::XVbaMethodParameter void SAL_CALL VCLXDialog::setVbaMethodParameter( const ::rtl::OUString& PropertyName, @@ -2444,7 +2443,7 @@ throw(::com::sun::star::uno::RuntimeException) } ::com::sun::star::uno::Any SAL_CALL VCLXDialog::getVbaMethodParameter( - const ::rtl::OUString& PropertyName ) + const ::rtl::OUString& /*PropertyName*/ ) throw(::com::sun::star::uno::RuntimeException) { ::vos::OGuard aGuard( GetMutex() ); @@ -2452,10 +2451,6 @@ throw(::com::sun::star::uno::RuntimeException) ::com::sun::star::uno::Any aRet; return aRet; } -//liuchen 2009-7-22 - - - void SAL_CALL VCLXDialog::setProperty( const ::rtl::OUString& PropertyName, |