Fix the F1 help manual hrefs

This commit is contained in:
Jean-Francois Dockes 2016-01-07 16:55:25 +01:00
parent bf6cb5ac4e
commit ac20f35933
6 changed files with 8 additions and 6 deletions

View File

@ -52,7 +52,7 @@ void AdvSearch::init()
{ {
(void)new HelpClient(this); (void)new HelpClient(this);
HelpClient::installMap((const char *)objectName().toUtf8(), HelpClient::installMap((const char *)objectName().toUtf8(),
"RCL.SEARCH.COMPLEX"); "RCL.SEARCH.GUI.COMPLEX");
// signals and slots connections // signals and slots connections
connect(delFiltypPB, SIGNAL(clicked()), this, SLOT(delFiltypPB_clicked())); connect(delFiltypPB, SIGNAL(clicked()), this, SLOT(delFiltypPB_clicked()));

View File

@ -138,7 +138,7 @@ void Preview::init()
(void)new HelpClient(this); (void)new HelpClient(this);
HelpClient::installMap((const char *)objectName().toUtf8(), HelpClient::installMap((const char *)objectName().toUtf8(),
"RCL.SEARCH.PREVIEW"); "RCL.SEARCH.GUI.PREVIEW");
// signals and slots connections // signals and slots connections
connect(searchTextCMB, SIGNAL(activated(int)), connect(searchTextCMB, SIGNAL(activated(int)),

View File

@ -162,7 +162,8 @@ void RclMain::init()
(void)statusBar(); (void)statusBar();
(void)new HelpClient(this); (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: // Set the focus to the search terms entry:
sSearch->queryText->setFocus(); sSearch->queryText->setFocus();

View File

@ -331,7 +331,8 @@ ResList::ResList(QWidget* parent, const char* name)
languageChange(); languageChange();
(void)new HelpClient(this); (void)new HelpClient(this);
HelpClient::installMap(qs2utf8s(this->objectName()), "RCL.SEARCH.RESLIST"); HelpClient::installMap(qs2utf8s(this->objectName()),
"RCL.SEARCH.GUI.RESLIST");
#if 0 #if 0
// See comments in "highlighted // See comments in "highlighted

View File

@ -97,7 +97,7 @@ void SpellW::init()
(void)new HelpClient(this); (void)new HelpClient(this);
HelpClient::installMap((const char *)this->objectName().toUtf8(), HelpClient::installMap((const char *)this->objectName().toUtf8(),
"RCL.SEARCH.TERMEXPLORER"); "RCL.SEARCH.GUI.TERMEXPLORER");
// signals and slots connections // signals and slots connections
connect(baseWordLE, SIGNAL(textChanged(const QString&)), connect(baseWordLE, SIGNAL(textChanged(const QString&)),

View File

@ -153,7 +153,7 @@ void SSearch::searchTypeChanged(int typ)
"RCL.SEARCH.LANG"); "RCL.SEARCH.LANG");
else else
HelpClient::installMap((const char *)this->objectName().toUtf8(), HelpClient::installMap((const char *)this->objectName().toUtf8(),
"RCL.SEARCH.SIMPLE"); "RCL.SEARCH.GUI.SIMPLE");
// Also fix tooltips // Also fix tooltips
switch (typ) { switch (typ) {