diff --git a/img/xca.ico b/img/xca.ico index 16d39b33..e50acf1a 100644 Binary files a/img/xca.ico and b/img/xca.ico differ diff --git a/img/xdb.ico b/img/xdb.ico index 5f44bea6..019e3c37 100644 Binary files a/img/xdb.ico and b/img/xdb.ico differ diff --git a/widgets/MW_help.cpp b/widgets/MW_help.cpp index bee94cc9..2d63cc61 100644 --- a/widgets/MW_help.cpp +++ b/widgets/MW_help.cpp @@ -148,10 +148,12 @@ void MainWindow::help() #ifdef WIN32 path += "/"; #endif - path += getPrefix(); - uri = path + QDir::separator() +"xca.html"; + path += getPrefix() + "/"; +#ifdef WIN32 + path = path.replace("\\","/"); +#endif + uri = path + "xca.html"; - printf("Help URI = '%s'\n", CCHAR(path)); ui.textbox->setSource(QUrl(uri)); ui.textbox->setSearchPaths(QStringList(path)); h->setWindowTitle(tr(XCA_TITLE));