diff --git a/src/qtgui/advsearch_w.cpp b/src/qtgui/advsearch_w.cpp index a082abed..712d191f 100644 --- a/src/qtgui/advsearch_w.cpp +++ b/src/qtgui/advsearch_w.cpp @@ -52,7 +52,7 @@ void AdvSearch::init() { (void)new HelpClient(this); HelpClient::installMap((const char *)objectName().toUtf8(), - "RCL.SEARCH.COMPLEX"); + "RCL.SEARCH.GUI.COMPLEX"); // signals and slots connections connect(delFiltypPB, SIGNAL(clicked()), this, SLOT(delFiltypPB_clicked())); diff --git a/src/qtgui/preview_w.cpp b/src/qtgui/preview_w.cpp index 5aeb1aec..231ecb0c 100644 --- a/src/qtgui/preview_w.cpp +++ b/src/qtgui/preview_w.cpp @@ -138,7 +138,7 @@ void Preview::init() (void)new HelpClient(this); HelpClient::installMap((const char *)objectName().toUtf8(), - "RCL.SEARCH.PREVIEW"); + "RCL.SEARCH.GUI.PREVIEW"); // signals and slots connections connect(searchTextCMB, SIGNAL(activated(int)), diff --git a/src/qtgui/rclmain_w.cpp b/src/qtgui/rclmain_w.cpp index 45a93a1a..e038f719 100644 --- a/src/qtgui/rclmain_w.cpp +++ b/src/qtgui/rclmain_w.cpp @@ -162,7 +162,8 @@ void RclMain::init() (void)statusBar(); (void)new HelpClient(this); - HelpClient::installMap((const char *)this->objectName().toUtf8(), "RCL.SEARCH.SIMPLE"); + HelpClient::installMap((const char *)this->objectName().toUtf8(), + "RCL.SEARCH.GUI.SIMPLE"); // Set the focus to the search terms entry: sSearch->queryText->setFocus(); diff --git a/src/qtgui/reslist.cpp b/src/qtgui/reslist.cpp index ab7536c8..aa916792 100644 --- a/src/qtgui/reslist.cpp +++ b/src/qtgui/reslist.cpp @@ -331,7 +331,8 @@ ResList::ResList(QWidget* parent, const char* name) languageChange(); (void)new HelpClient(this); - HelpClient::installMap(qs2utf8s(this->objectName()), "RCL.SEARCH.RESLIST"); + HelpClient::installMap(qs2utf8s(this->objectName()), + "RCL.SEARCH.GUI.RESLIST"); #if 0 // See comments in "highlighted diff --git a/src/qtgui/spell_w.cpp b/src/qtgui/spell_w.cpp index cd5538f8..731076ee 100644 --- a/src/qtgui/spell_w.cpp +++ b/src/qtgui/spell_w.cpp @@ -97,7 +97,7 @@ void SpellW::init() (void)new HelpClient(this); HelpClient::installMap((const char *)this->objectName().toUtf8(), - "RCL.SEARCH.TERMEXPLORER"); + "RCL.SEARCH.GUI.TERMEXPLORER"); // signals and slots connections connect(baseWordLE, SIGNAL(textChanged(const QString&)), diff --git a/src/qtgui/ssearch_w.cpp b/src/qtgui/ssearch_w.cpp index 283bc5de..767ca994 100644 --- a/src/qtgui/ssearch_w.cpp +++ b/src/qtgui/ssearch_w.cpp @@ -153,7 +153,7 @@ void SSearch::searchTypeChanged(int typ) "RCL.SEARCH.LANG"); else HelpClient::installMap((const char *)this->objectName().toUtf8(), - "RCL.SEARCH.SIMPLE"); + "RCL.SEARCH.GUI.SIMPLE"); // Also fix tooltips switch (typ) {