projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Minor changes, just trim trailing spaces in webview code.
[wxWidgets.git]
/
utils
/
hhp2cached
/
hhp2cached.cpp
diff --git
a/utils/hhp2cached/hhp2cached.cpp
b/utils/hhp2cached/hhp2cached.cpp
index 9f22693b9da4a055b61856666c6e0bf45f1ef3e8..ffcd539982c9b370a763c78172dd8e65edc2ec8c 100644
(file)
--- a/
utils/hhp2cached/hhp2cached.cpp
+++ b/
utils/hhp2cached/hhp2cached.cpp
@@
-33,10
+33,10
@@
bool MyApp::OnInit()
for (int i = 1; i < argc; i++)
{
wxHtmlHelpData data;
- wxPrintf(
"Processing %s...\n"
, argv[i]);
+ wxPrintf(
wxT("Processing %s...\n")
, argv[i]);
data.SetTempDir(wxPathOnly(argv[i]));
data.AddBook(argv[i]);
}
- return
FALSE
;
+ return
false
;
}