projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9b964c
)
(blind) fix for gcc warning on some platforms
author
Václav Slavík
<vslavik@fastmail.fm>
Fri, 30 Jan 2004 12:57:51 +0000
(12:57 +0000)
committer
Václav Slavík
<vslavik@fastmail.fm>
Fri, 30 Jan 2004 12:57:51 +0000
(12:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25419
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/common/intl.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/common/intl.cpp
b/src/common/intl.cpp
index 57d31cf4bbc003e97acdeb5291842eef974dfe0e..67e446e66ed9888f938a8888af3a3784e7833262 100644
(file)
--- a/
src/common/intl.cpp
+++ b/
src/common/intl.cpp
@@
-2423,14
+2423,14
@@
const wxChar *wxLocale::GetString(const wxChar *szOrigString,
{
wxLogTrace(_T("i18n"),
_T("string '%s'[%d] not found in domain '%s' for locale '%s'."),
- szOrigString, n, szDomain, m_strLocale.c_str());
+ szOrigString,
(int)
n, szDomain, m_strLocale.c_str());
}
else
{
wxLogTrace(_T("i18n"),
_T("string '%s'[%d] not found in locale '%s'."),
- szOrigString, n, m_strLocale.c_str());
+ szOrigString,
(int)
n, m_strLocale.c_str());
}
}
#endif // __WXDEBUG__