diff options
Diffstat (limited to 'tdewallet/konfigurator/konfigurator.cpp')
-rw-r--r-- | tdewallet/konfigurator/konfigurator.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tdewallet/konfigurator/konfigurator.cpp b/tdewallet/konfigurator/konfigurator.cpp index ad7c587..43b7732 100644 --- a/tdewallet/konfigurator/konfigurator.cpp +++ b/tdewallet/konfigurator/konfigurator.cpp @@ -36,6 +36,7 @@ #include <tqlistview.h> #include <tqpushbutton.h> #include <tqspinbox.h> +#include <tqtabwidget.h> typedef KGenericFactory<TDEWalletConfig, TQWidget> TDEWalletFactory; K_EXPORT_COMPONENT_FACTORY(kcm_tdewallet, TDEWalletFactory("kcmtdewallet")) @@ -289,6 +290,16 @@ void TDEWalletConfig::save() { emit changed(false); } +TQString TDEWalletConfig::handbookSection() const +{ + int index = _wcw->tabWidget2->currentPageIndex(); + if (index == 0) + return "wallet-preferences"; + else if (index == 1) + return "wallet-access-control"; + else + return TQString::null; +} void TDEWalletConfig::defaults() { load( true ); |