- Reduce the ammount of unused vars/parameters warnings
svn path=/trunk/KDE/kdebase/workspace/; revision=1049628
This commit is contained in:
parent
5e93336473
commit
23dcb5d66a
2 changed files with 4 additions and 3 deletions
|
@ -40,6 +40,7 @@ extern "C"
|
||||||
|
|
||||||
TabstripConfig::TabstripConfig( KConfig *c, QWidget *parent )
|
TabstripConfig::TabstripConfig( KConfig *c, QWidget *parent )
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(c);
|
||||||
KGlobal::locale()->insertCatalog( "kwin_tabstrip_config" );
|
KGlobal::locale()->insertCatalog( "kwin_tabstrip_config" );
|
||||||
config = new KConfig( "tabstriprc" );
|
config = new KConfig( "tabstriprc" );
|
||||||
KConfigGroup cg( config, "General" );
|
KConfigGroup cg( config, "General" );
|
||||||
|
|
|
@ -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* )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue