projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
fix the definition of many static functions marked as 'const' or functions which...
[wxWidgets.git]
/
src
/
common
/
uri.cpp
diff --git
a/src/common/uri.cpp
b/src/common/uri.cpp
index 41d2e64259328be78244f3e262b9e85deb0b0615..fd5b69caaf8afef3038883ba53cb9fb30ed17600 100644
(file)
--- a/
src/common/uri.cpp
+++ b/
src/common/uri.cpp
@@
-132,7
+132,7
@@
wxString wxURI::Unescape(const wxString& uri)
wxASSERT_MSG( n >= 0 && n <= 0xff, "unexpected character value" );
- c =
wx_static_cast(char,
n);
+ c =
static_cast<char>(
n);
}
*p = c;