diff options
author | Michele Calgaro <[email protected]> | 2014-11-14 22:29:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2014-11-14 22:29:12 +0900 |
commit | 8858fc1159edf35efa400315c11c095008536802 (patch) | |
tree | 249287984780e2e2339c532ce1140f5eb5ff743c /kcontrol/locale | |
parent | f8903b3564659e9ff2e8779610e56da6efaca4f0 (diff) | |
download | tdebase-8858fc1159edf35efa400315c11c095008536802.tar.gz tdebase-8858fc1159edf35efa400315c11c095008536802.zip |
Fixed help handbook sections for Regional & Accessibility. This relates to bug 1850.
Diffstat (limited to 'kcontrol/locale')
-rw-r--r-- | kcontrol/locale/toplevel.cpp | 17 | ||||
-rw-r--r-- | kcontrol/locale/toplevel.h | 5 |
2 files changed, 20 insertions, 2 deletions
diff --git a/kcontrol/locale/toplevel.cpp b/kcontrol/locale/toplevel.cpp index a7a85e72f..d2a17ca74 100644 --- a/kcontrol/locale/toplevel.cpp +++ b/kcontrol/locale/toplevel.cpp @@ -206,6 +206,23 @@ void TDELocaleApplication::save() emit changed(false); } +TQString TDELocaleApplication::handbookSection() const +{ + int index = m_tab->currentPageIndex(); + if (index == 0) + return "locale-locale"; + else if (index == 1) + return "locale-numbers"; + else if (index == 2) + return "locale-money"; + else if (index == 3) + return "locale-datetime"; + else if (index == 4) + return "locale-other"; + else + return TQString::null; +} + void TDELocaleApplication::defaults() { load( true ); diff --git a/kcontrol/locale/toplevel.h b/kcontrol/locale/toplevel.h index e381d6749..abc1a47f9 100644 --- a/kcontrol/locale/toplevel.h +++ b/kcontrol/locale/toplevel.h @@ -53,6 +53,7 @@ public: virtual void save(); virtual void defaults(); virtual TQString quickHelp() const; + virtual TQString handbookSection() const; signals: void languageChanged(); @@ -68,14 +69,14 @@ public slots: private: TDELocale *m_locale; - TQTabWidget *m_tab; + TQTabWidget *m_tab; TDELocaleConfig *m_localemain; TDELocaleConfigNumber *m_localenum; TDELocaleConfigMoney *m_localemon; TDELocaleConfigTime *m_localetime; TDELocaleConfigOther *m_localeother; - TQGroupBox *m_gbox; + TQGroupBox *m_gbox; TDELocaleSample *m_sample; TDEConfig * m_globalConfig; |