undo (unintentional?) function removal by ruphy that broke the build... ruphy, please check the diff first! :-)

svn path=/trunk/KDE/kdebase/workspace/; revision=732044
icc-effect-5.14.5
Matthew Woehlke 2007-11-02 16:28:27 +00:00
parent 5bb6ed0b1a
commit a7c46120b6
1 changed files with 14 additions and 1 deletions

View File

@ -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