]> git.saurik.com Git - wxWidgets.git/commitdiff
use wxUnusedVar() to suppress warnings about unused variable
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 5 Apr 2004 10:51:49 +0000 (10:51 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 5 Apr 2004 10:51:49 +0000 (10:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/wrapcctl.h

index 7d32e65c5745f4214134f3645e03220440a3df0b..2e508081c4655abf50fd6bfa283f615d0972f231 100644 (file)
@@ -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__
 }