undo (unintentional?) function removal by ruphy that broke the build... ruphy, please check the diff first! :-)
svn path=/trunk/KDE/kdebase/workspace/; revision=732044
This commit is contained in:
parent
5bb6ed0b1a
commit
a7c46120b6
1 changed files with 14 additions and 1 deletions
|
@ -120,6 +120,19 @@ bool OxygenFactory::readConfig()
|
|||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool OxygenFactory::supports( Ability ability ) const
|
||||
{
|
||||
switch( ability ) {
|
||||
case AbilityAnnounceButtons:
|
||||
case AbilityButtonMenu:
|
||||
case AbilityButtonHelp:
|
||||
case AbilityButtonMinimize:
|
||||
case AbilityButtonMaximize:
|
||||
case AbilityButtonClose:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
};
|
||||
}
|
||||
|
||||
} //namespace Oxygen
|
||||
|
|
Loading…
Reference in a new issue