diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-17 18:03:04 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-17 18:03:04 -0600 |
commit | bb350f27a6baf040b648d1b90c360cf4e9dc4b7d (patch) | |
tree | 03a6cd7e44675f68c2eccb04498149ea5e8b8a6a | |
parent | 1e35518ce2e456a2fcad2375aa4e7b96bf895941 (diff) | |
download | tdemultimedia-bb350f27a6baf040b648d1b90c360cf4e9dc4b7d.tar.gz tdemultimedia-bb350f27a6baf040b648d1b90c360cf4e9dc4b7d.zip |
Add Help buttons to kcontrol module dialogs in support of bug report 1889.
-rw-r--r-- | libkcddb/kcmcddb/kcmcddb.cpp | 2 | ||||
-rw-r--r-- | tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libkcddb/kcmcddb/kcmcddb.cpp b/libkcddb/kcmcddb/kcmcddb.cpp index cda14763..8dc35a3e 100644 --- a/libkcddb/kcmcddb/kcmcddb.cpp +++ b/libkcddb/kcmcddb/kcmcddb.cpp @@ -49,7 +49,7 @@ CDDBModule::CDDBModule(TQWidget *parent, const char *name, const TQStringList &) : TDECModule(parent, name) { TDEGlobal::locale()->insertCatalogue("libkcddb"); - setButtons(Default | Apply); + setButtons(Default | Apply | Help); widget_ = new CDDBConfigWidget(this); diff --git a/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp b/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp index 2287b668..8e73ce26 100644 --- a/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp +++ b/tdeioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp @@ -38,8 +38,8 @@ KAudiocdModule::KAudiocdModule(TQWidget *parent, const char *name) : AudiocdConfig(parent, name), configChanged(false) { TQString foo = i18n("Report errors found on the cd."); - - setButtons(Default|Apply); + + setButtons(Default|Apply|Help); config = new TDEConfig("kcmaudiocdrc"); |