|
a/src/qtgui/spell_w.cpp |
|
b/src/qtgui/spell_w.cpp |
|
... |
|
... |
42 |
#include "debuglog.h"
|
42 |
#include "debuglog.h"
|
43 |
#include "recoll.h"
|
43 |
#include "recoll.h"
|
44 |
#include "spell_w.h"
|
44 |
#include "spell_w.h"
|
45 |
#include "guiutils.h"
|
45 |
#include "guiutils.h"
|
46 |
#include "rcldb.h"
|
46 |
#include "rcldb.h"
|
|
|
47 |
#include "rclhelp.h"
|
47 |
|
48 |
|
48 |
#ifdef RCL_USE_ASPELL
|
49 |
#ifdef RCL_USE_ASPELL
|
49 |
#include "rclaspell.h"
|
50 |
#include "rclaspell.h"
|
50 |
#endif
|
51 |
#endif
|
51 |
|
52 |
|
|
... |
|
... |
78 |
it != langs.end(); it++) {
|
79 |
it != langs.end(); it++) {
|
79 |
stemLangCMB->
|
80 |
stemLangCMB->
|
80 |
insertItem(QString::fromAscii(it->c_str(), it->length()));
|
81 |
insertItem(QString::fromAscii(it->c_str(), it->length()));
|
81 |
}
|
82 |
}
|
82 |
stemLangCMB->setEnabled(expTypeCMB->currentItem()==2);
|
83 |
stemLangCMB->setEnabled(expTypeCMB->currentItem()==2);
|
|
|
84 |
|
|
|
85 |
(void)new HelpClient(this);
|
|
|
86 |
HelpClient::installMap(this->name(), "RCL.SEARCH.TERMEXPLORER");
|
83 |
|
87 |
|
84 |
// signals and slots connections
|
88 |
// signals and slots connections
|
85 |
connect(baseWordLE, SIGNAL(textChanged(const QString&)),
|
89 |
connect(baseWordLE, SIGNAL(textChanged(const QString&)),
|
86 |
this, SLOT(wordChanged(const QString&)));
|
90 |
this, SLOT(wordChanged(const QString&)));
|
87 |
connect(baseWordLE, SIGNAL(returnPressed()), this, SLOT(doExpand()));
|
91 |
connect(baseWordLE, SIGNAL(returnPressed()), this, SLOT(doExpand()));
|