| 17 | #endif |
| 18 | |
| 19 | Help::Help() : QWidget(NULL) |
| 20 | { |
| 21 | setupUi(this); |
| 22 | setWindowTitle(XCA_TITLE); |
| 23 | textbox->setSearchPaths(QStringList(getDocDir())); |
| 24 | textbox->setOpenExternalLinks(true); |
| 25 | textbox->clearHistory(); |
| 26 | if (!getDocDir().isEmpty()) |
| 27 | helpengine = new QHelpEngineCore(getDocDir() + "/xca.qhc"); |
| 28 | } |
| 29 | |
| 30 | Help::~Help() |
| 31 | { |