summaryrefslogtreecommitdiffstats
path: root/libkcddb/kcmcddb
diff options
context:
space:
mode:
Diffstat (limited to 'libkcddb/kcmcddb')
-rw-r--r--libkcddb/kcmcddb/kcmcddb.cpp13
-rw-r--r--libkcddb/kcmcddb/kcmcddb.h3
2 files changed, 15 insertions, 1 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"
diff --git a/libkcddb/kcmcddb/kcmcddb.h b/libkcddb/kcmcddb/kcmcddb.h
index 3bdb98c8..3f983d82 100644
--- a/libkcddb/kcmcddb/kcmcddb.h
+++ b/libkcddb/kcmcddb/kcmcddb.h
@@ -41,7 +41,8 @@ class CDDBModule : public TDECModule
void defaults();
void save();
void load();
-
+ virtual TQString handbookSection() const;
+
protected:
void checkSettings() const;