diff options
Diffstat (limited to 'libkcddb/kcmcddb/kcmcddb.cpp')
-rw-r--r-- | libkcddb/kcmcddb/kcmcddb.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libkcddb/kcmcddb/kcmcddb.cpp b/libkcddb/kcmcddb/kcmcddb.cpp index 8dc35a3e..62e043b4 100644 --- a/libkcddb/kcmcddb/kcmcddb.cpp +++ b/libkcddb/kcmcddb/kcmcddb.cpp @@ -27,6 +27,7 @@ #include <tqlistbox.h> #include <tqlabel.h> #include <tqbuttongroup.h> +#include <tqtabwidget.h> #include <tdeconfig.h> #include <tdelocale.h> @@ -127,6 +128,18 @@ CDDBModule::load() updateWidgetsFromConfig(config); } +TQString CDDBModule::handbookSection() const +{ + int index = widget_->tabWidget2->currentPageIndex(); + if (index == 0) + return "cddb-lookup"; + else if (index == 1) + return "cddb-submit"; + else + return TQString::null; +} + + // vim:tabstop=2:shiftwidth=2:expandtab:cinoptions=(s,U1,m1 #include "kcmcddb.moc" |