From 0304608682a693951cd8699ade932b102d72328a Mon Sep 17 00:00:00 2001 From: Brian Macy Date: Sat, 8 May 1999 04:58:10 +0000 Subject: [PATCH] Fixed two missing parens git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2363 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/wxchar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/wxchar.cpp b/src/common/wxchar.cpp index d1a9ecb760..74d9ec514b 100644 --- a/src/common/wxchar.cpp +++ b/src/common/wxchar.cpp @@ -141,8 +141,8 @@ int WXDLLEXPORT wxIspunct(wxChar ch) { return wxMSW_ctype(ch) & C1_PUNCT; } int WXDLLEXPORT wxIsspace(wxChar ch) { return wxMSW_ctype(ch) & C1_SPACE; } int WXDLLEXPORT wxIsupper(wxChar ch) { return IsCharUpper(ch); } int WXDLLEXPORT wxIsxdigit(wxChar ch) { return wxMSW_ctype(ch) & C1_XDIGIT; } -int WXDLLEXPORT wxTolower(wxChar ch) { return (wxChar)CharLower((LPTSTR)(ch); } -int WXDLLEXPORT wxToupper(wxChar ch) { return (wxChar)CharUpper((LPTSTR)(ch); } +int WXDLLEXPORT wxTolower(wxChar ch) { return (wxChar)CharLower((LPTSTR)(ch)); } +int WXDLLEXPORT wxToupper(wxChar ch) { return (wxChar)CharUpper((LPTSTR)(ch)); } #endif #ifndef wxStrdup -- 2.45.2