diff options
-rw-r--r-- | tdeui/tdecmodule.cpp | 4 | ||||
-rw-r--r-- | tdeui/tdecmodule.h | 11 |
2 files changed, 14 insertions, 1 deletions
diff --git a/tdeui/tdecmodule.cpp b/tdeui/tdecmodule.cpp index c6b7d3726..1c718273a 100644 --- a/tdeui/tdecmodule.cpp +++ b/tdeui/tdecmodule.cpp @@ -208,6 +208,10 @@ TQString TDECModule::quickHelp() const return d->_quickHelp; } +TQString TDECModule::handbookSection() const +{ + return TQString::null; +} const TQPtrList<TDEConfigDialogManager>& TDECModule::configs() const { diff --git a/tdeui/tdecmodule.h b/tdeui/tdecmodule.h index ccaaa8fd5..b4d7f6d88 100644 --- a/tdeui/tdecmodule.h +++ b/tdeui/tdecmodule.h @@ -178,6 +178,15 @@ public: virtual TQString quickHelp() const; /** + * If a specific handbook section is relevant to the currently displayed content + * (for example tabbed control center modules) this method returns the relevant section name + * + * @note this string must match the handbook HTML section name exactly + * @returns a TQString containing the relevant handbook section name or TQString::null if no specific section is relevant + */ + virtual TQString handbookSection() const; + + /** * This is generally only called for the KBugReport. * If you override you should have it return a pointer to a constant. * @@ -185,7 +194,7 @@ public: * @returns the TDEAboutData for this module */ virtual const TDEAboutData *aboutData() const; - + /** * This sets the TDEAboutData returned by aboutData() * @since 3.3 |