diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-11-20 13:38:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-11-20 13:38:16 +0900 |
commit | f059b01e2c8c5c8da540c3188b7cba18fac1a6e9 (patch) | |
tree | 5c77d1cd18671a8f90d96bc671e02d892f0f0b60 | |
parent | 9a0d522f7f54f69f4b04c810613b74192911441d (diff) | |
download | tdemultimedia-f059b01e2c8c5c8da540c3188b7cba18fac1a6e9.tar.gz tdemultimedia-f059b01e2c8c5c8da540c3188b7cba18fac1a6e9.zip |
Fixed help handbook sections for Sound & Multimedia -> AudioCDs / CDDB Retrieval. This relates to bug 1850.
-rw-r--r-- | libkcddb/kcmcddb/kcmcddb.cpp | 13 | ||||
-rw-r--r-- | libkcddb/kcmcddb/kcmcddb.h | 3 | ||||
-rw-r--r-- | tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp | 11 | ||||
-rw-r--r-- | tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.h | 3 |
4 files changed, 28 insertions, 2 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; diff --git a/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp b/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp index 8e73ce26..1954422c 100644 --- a/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp +++ b/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp @@ -216,6 +216,17 @@ void KAudiocdModule::load(bool useDefaults) { emit changed( useDefaults ); } +TQString KAudiocdModule::handbookSection() const +{ + int index = tabWidget->currentPageIndex(); + if (index == 0) + return "audiocd-general"; + else if (index == 1) + return "audiocd-names"; + else + return TQString::null; +} + void KAudiocdModule::slotModuleChanged() { TDEConfigDialogManager *widget; for ( widget = encoderSettings.first(); widget; widget = encoderSettings.next() ){ diff --git a/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.h b/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.h index c9ec1bc7..f89ef32f 100644 --- a/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.h +++ b/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.h @@ -46,7 +46,8 @@ public slots: void save(); void load(); void load(bool useDefaults); - + virtual TQString handbookSection() const; + private slots: void updateExample(); void slotConfigChanged(); |