diff options
Diffstat (limited to 'kcontrol/style')
-rw-r--r-- | kcontrol/style/kcmstyle.cpp | 8 | ||||
-rw-r--r-- | kcontrol/style/kcmstyle.h | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/kcontrol/style/kcmstyle.cpp b/kcontrol/style/kcmstyle.cpp index e6f426423..d6a7ae6ee 100644 --- a/kcontrol/style/kcmstyle.cpp +++ b/kcontrol/style/kcmstyle.cpp @@ -1142,9 +1142,15 @@ TQString KCMStyle::handbookSection() const { int index = tabWidget->currentPageIndex(); if (index == 0) { - //return "style-intro"; + //return "style-style"; return TQString::null; } + else if (index == 1) { + return "style-effects"; + } + else if (index == 2) { + return "style-misc"; + } else { return TQString::null; } diff --git a/kcontrol/style/kcmstyle.h b/kcontrol/style/kcmstyle.h index ad9fec498..4fb1065bf 100644 --- a/kcontrol/style/kcmstyle.h +++ b/kcontrol/style/kcmstyle.h @@ -127,7 +127,7 @@ private: TQCheckBox* cbAutoHideAccelerators; TQCheckBox* cbMenuAltKeyNavigation; TQCheckBox* cbEnableTooltips; - KIntNumInput *m_popupMenuDelay; + KIntNumInput *m_popupMenuDelay; // Page2 widgets TQCheckBox* cbEnableEffects; |