summaryrefslogtreecommitdiffstats
path: root/knetworkconf/knetworkconf/knetworkconf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knetworkconf/knetworkconf/knetworkconf.cpp')
-rw-r--r--knetworkconf/knetworkconf/knetworkconf.cpp22
1 files changed, 10 insertions, 12 deletions
diff --git a/knetworkconf/knetworkconf/knetworkconf.cpp b/knetworkconf/knetworkconf/knetworkconf.cpp
index 0ef9461..9459cb1 100644
--- a/knetworkconf/knetworkconf/knetworkconf.cpp
+++ b/knetworkconf/knetworkconf/knetworkconf.cpp
@@ -1187,21 +1187,19 @@ void KNetworkConf::updateProfileSlot()
}
}
-TQString KNetworkConf::handbookSection() const
+TQString KNetworkConf::handbookDocPath() const
{
- // FIXME
- // No context-sensitive help documentation currently exists for this module!
- // This module is somewhat unique in having comprehensive usage documentation available, but this
- // documentation is not organized by tab and is split up across multiple docbooks.
- // A GUI-centric brief help docbook should be added with links back to the main Network Configuration help.
int index = tabWidget->currentPageIndex();
- if (index == 0) {
- //return "";
+ if (index == 0)
+ return "knetworkconf/using-the-module.html#network-interfaces";
+ else if (index == 1)
+ return "knetworkconf/route.html";
+ else if (index == 2)
+ return "knetworkconf/dns.html";
+ else if (index == 3)
+ return "knetworkconf/profile.html";
+ else
return TQString::null;
- }
- else {
- return TQString::null;
- }
}
#include "knetworkconf.moc"