don't show the keyboard shortcut page if we're a containment

svn path=/trunk/KDE/kdelibs/; revision=885755
This commit is contained in:
Aaron J. Seigo 2008-11-17 21:06:09 +00:00
parent 6ce288cc0e
commit 48545153e4

View File

@ -1397,6 +1397,10 @@ void Applet::showConfigurationInterface()
void AppletPrivate::addGlobalShortcutsPage(KConfigDialog *dialog)
{
if (isContainment) {
return;
}
QWidget *page = new QWidget;
QVBoxLayout *layout = new QVBoxLayout(page);