From: Vadim Zeitlin Date: Thu, 12 Jul 2007 22:04:59 +0000 (+0000) Subject: fix unused parameter warning in OnIdle() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cb3c7fdda6a492596664dd106b56eeec98c736f3 fix unused parameter warning in OnIdle() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47406 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/app.cpp b/src/msw/app.cpp index f1cdf6d385..703871214c 100644 --- a/src/msw/app.cpp +++ b/src/msw/app.cpp @@ -548,7 +548,7 @@ wxApp::~wxApp() // wxApp idle handling // ---------------------------------------------------------------------------- -void wxApp::OnIdle(wxIdleEvent& event) +void wxApp::OnIdle(wxIdleEvent& WXUNUSED(event)) { #if wxUSE_DC_CACHEING // automated DC cache management: clear the cached DCs and bitmap