From: Vadim Zeitlin Date: Mon, 5 Apr 2004 10:51:49 +0000 (+0000) Subject: use wxUnusedVar() to suppress warnings about unused variable X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b39ba2c2eef8d44486b89423efe51791567d82bb?ds=sidebyside use wxUnusedVar() to suppress warnings about unused variable git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/wrapcctl.h b/include/wx/msw/wrapcctl.h index 7d32e65c57..2e508081c4 100644 --- a/include/wx/msw/wrapcctl.h +++ b/include/wx/msw/wrapcctl.h @@ -50,7 +50,7 @@ inline void wxSetCCUnicodeFormat(HWND hwnd) ::SendMessage(hwnd, CCM_SETUNICODEFORMAT, wxUSE_UNICODE, 0); #else // !__WXWINCE__ // here it should be already in Unicode anyhow - hwnd; + wxUnusedVar(hwnd); #endif // __WXWINCE__/!__WXWINCE__ }