diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-28 13:28:20 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-28 13:28:20 (GMT) |
commit | ffa8abdcd899778eeda66cb425c6d54ac9764f78 (patch) | |
tree | 9f84b8ae8aac301a798822588e58901398fce234 /addon/doxywizard | |
parent | fe44a7f4e14e1c21820993628829a3cc24421989 (diff) | |
download | Doxygen-ffa8abdcd899778eeda66cb425c6d54ac9764f78.zip Doxygen-ffa8abdcd899778eeda66cb425c6d54ac9764f78.tar.gz Doxygen-ffa8abdcd899778eeda66cb425c6d54ac9764f78.tar.bz2 |
Bug 704971 - Can't build with MinGW
Diffstat (limited to 'addon/doxywizard')
-rw-r--r-- | addon/doxywizard/doxywizard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp index 9bdf39d..22e2384 100644 --- a/addon/doxywizard/doxywizard.cpp +++ b/addon/doxywizard/doxywizard.cpp @@ -525,7 +525,7 @@ void MainWindow::showHtmlOutput() // TODO: the following doesn't seem to work with IE #ifdef WIN32 //QString indexUrl(QString::fromAscii("file:///")); - ShellExecute(NULL, L"open", fi.absoluteFilePath().utf16(), NULL, NULL, SW_SHOWNORMAL); + ShellExecute(NULL, L"open", (LPCWSTR)fi.absoluteFilePath().utf16(), NULL, NULL, SW_SHOWNORMAL); #else QString indexUrl(QString::fromAscii("file://")); indexUrl+=fi.absoluteFilePath(); |