diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2015-06-09 13:12:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2015-06-09 13:12:33 +0900 |
commit | da25462d268fc49751fc3617b49fa8b4742dad15 (patch) | |
tree | 5b8f3ee084c00afd2d2e9dce49c2516fafe87848 /kxkb/kcmlayout.cpp | |
parent | 900f593b6b33dd6028def8e3f7f595819cbbf2f1 (diff) | |
download | tdebase-da25462d268fc49751fc3617b49fa8b4742dad15.tar.gz tdebase-da25462d268fc49751fc3617b49fa8b4742dad15.zip |
Fixed khelpcenter visualization bug. This solves bug 2188.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kxkb/kcmlayout.cpp')
-rw-r--r-- | kxkb/kcmlayout.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kxkb/kcmlayout.cpp b/kxkb/kcmlayout.cpp index 1cb011270..a306f0a33 100644 --- a/kxkb/kcmlayout.cpp +++ b/kxkb/kcmlayout.cpp @@ -329,15 +329,15 @@ void LayoutConfig::save() } -TQString LayoutConfig::handbookSection() const +TQString LayoutConfig::handbookDocPath() const { int index = widget->tabWidget->currentPageIndex(); if (index == 0) - return "layout-config"; + return "kxkb/layout-config.html"; else if (index == 1) - return "switching-config"; + return "kxkb/switching-config.html"; else if (index == 2) - return "xkboptions-config"; + return "kxkb/xkboptions-config.html"; else return TQString::null; } |