diff options
Diffstat (limited to 'kcontrol/style/kcmstyle.cpp')
-rw-r--r-- | kcontrol/style/kcmstyle.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kcontrol/style/kcmstyle.cpp b/kcontrol/style/kcmstyle.cpp index 2ca50631d..e6f426423 100644 --- a/kcontrol/style/kcmstyle.cpp +++ b/kcontrol/style/kcmstyle.cpp @@ -1138,6 +1138,18 @@ void KCMStyle::addWhatsThis() "or submenu appears.") ); } +TQString KCMStyle::handbookSection() const +{ + int index = tabWidget->currentPageIndex(); + if (index == 0) { + //return "style-intro"; + return TQString::null; + } + else { + return TQString::null; + } +} + #include "kcmstyle.moc" // vim: set noet ts=4: |