WaE, remove unused parameters

This commit is contained in:
Caolán McNamara
2010-11-11 16:26:08 +00:00
parent 25bfc31c64
commit ecf28fe6aa
2 changed files with 4 additions and 4 deletions

View File

@@ -219,7 +219,7 @@ namespace connectivity { namespace hsqldb
}
// -------------------------------------------------------------------
Reference< XGraphic > SAL_CALL OHsqlConnection::getTableIcon( const ::rtl::OUString& _TableName, ::sal_Int32 _ColorMode ) throw (RuntimeException)
Reference< XGraphic > SAL_CALL OHsqlConnection::getTableIcon( const ::rtl::OUString& _TableName, ::sal_Int32 /*_ColorMode*/ ) throw (RuntimeException)
{
MethodGuard aGuard( *this );
@@ -227,7 +227,7 @@ namespace connectivity { namespace hsqldb
if ( !impl_isTextTable_nothrow( _TableName ) )
return NULL;
return impl_getTextTableIcon_nothrow( _ColorMode );
return impl_getTextTableIcon_nothrow();
}
// -------------------------------------------------------------------
@@ -347,7 +347,7 @@ namespace connectivity { namespace hsqldb
}
// -------------------------------------------------------------------
Reference< XGraphic > OHsqlConnection::impl_getTextTableIcon_nothrow( ::sal_Int32 _ColorMode )
Reference< XGraphic > OHsqlConnection::impl_getTextTableIcon_nothrow()
{
Reference< XGraphic > xGraphic;
try

View File

@@ -135,7 +135,7 @@ namespace connectivity
/** retrieves the icon for HSQL TEXT TABLEs
*/
::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic >
impl_getTextTableIcon_nothrow( ::sal_Int32 _ColorMode );
impl_getTextTableIcon_nothrow();
};
//==========================================================================