X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6158481fe536973633b4752459b2e06ba7f9413f..d7ef641d4e6d0e2157beb920bdd7d72fc6aecfd7:/utils/hhp2cached/hhp2cached.cpp?ds=sidebyside diff --git a/utils/hhp2cached/hhp2cached.cpp b/utils/hhp2cached/hhp2cached.cpp index 471fa04eea..2321d28cb8 100644 --- a/utils/hhp2cached/hhp2cached.cpp +++ b/utils/hhp2cached/hhp2cached.cpp @@ -17,7 +17,7 @@ #include "wx/wx.h" #endif -#include +#include "wx/html/helpdata.h" class MyApp : public wxApp @@ -33,10 +33,10 @@ bool MyApp::OnInit() for (int i = 1; i < argc; i++) { wxHtmlHelpData data; - wxPrintf("Processing %s...\n", argv[i]); + wxPrintf(_T("Processing %s...\n"), argv[i]); data.SetTempDir(wxPathOnly(argv[i])); data.AddBook(argv[i]); } - return FALSE; + return false; }