projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
don't assert at startup because of the static initialization of a wxLocale object...
[wxWidgets.git]
/
src
/
common
/
xlocale.cpp
diff --git
a/src/common/xlocale.cpp
b/src/common/xlocale.cpp
index 6adb86b8d996cb5a4baf1e5bbd8c451c81d3cf51..b04288c64869562cb034d51c12ea097fc7842c79 100644
(file)
--- a/
src/common/xlocale.cpp
+++ b/
src/common/xlocale.cpp
@@
-71,7
+71,7
@@
wxXLocale& wxXLocale::GetCLocale()
{
if ( !gs_cLocale )
{
- gs_cLocale = new wxXLocale(
wx_static_cast(wxXLocaleCTag *,
NULL));
+ gs_cLocale = new wxXLocale(
static_cast<wxXLocaleCTag *>(
NULL));
}
return *gs_cLocale;