- Reduce the ammount of unused vars/parameters warnings

svn path=/trunk/KDE/kdebase/workspace/; revision=1049628
icc-effect-5.14.5
Darío Andrés Rodríguez 2009-11-15 15:41:16 +00:00
parent 5e93336473
commit 23dcb5d66a
2 changed files with 4 additions and 3 deletions

View File

@ -40,6 +40,7 @@ extern "C"
TabstripConfig::TabstripConfig( KConfig *c, QWidget *parent )
{
Q_UNUSED(c);
KGlobal::locale()->insertCatalog( "kwin_tabstrip_config" );
config = new KConfig( "tabstriprc" );
KConfigGroup cg( config, "General" );

View File

@ -155,15 +155,15 @@ void Effect::windowUnminimized( EffectWindow* )
{
}
void Effect::clientGroupItemSwitched( EffectWindow* from, EffectWindow* to )
void Effect::clientGroupItemSwitched( EffectWindow*, EffectWindow* )
{
}
void Effect::clientGroupItemAdded( EffectWindow* from, EffectWindow* to )
void Effect::clientGroupItemAdded( EffectWindow*, EffectWindow* )
{
}
void Effect::clientGroupItemRemoved( EffectWindow* c, EffectWindow* group )
void Effect::clientGroupItemRemoved( EffectWindow*, EffectWindow* )
{
}