WaE, remove unused parameters
This commit is contained in:
@@ -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 );
|
MethodGuard aGuard( *this );
|
||||||
|
|
||||||
@@ -227,7 +227,7 @@ namespace connectivity { namespace hsqldb
|
|||||||
if ( !impl_isTextTable_nothrow( _TableName ) )
|
if ( !impl_isTextTable_nothrow( _TableName ) )
|
||||||
return NULL;
|
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;
|
Reference< XGraphic > xGraphic;
|
||||||
try
|
try
|
||||||
|
@@ -135,7 +135,7 @@ namespace connectivity
|
|||||||
/** retrieves the icon for HSQL TEXT TABLEs
|
/** retrieves the icon for HSQL TEXT TABLEs
|
||||||
*/
|
*/
|
||||||
::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic >
|
::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic >
|
||||||
impl_getTextTableIcon_nothrow( ::sal_Int32 _ColorMode );
|
impl_getTextTableIcon_nothrow();
|
||||||
};
|
};
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
Reference in New Issue
Block a user