better icons

Fix Windows help URI
This commit is contained in:
Christian 2007-02-09 00:28:29 +01:00
parent 72779569e9
commit 4943b00bde
3 changed files with 5 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -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));