From: Vadim Zeitlin Date: Tue, 8 Dec 2009 15:56:08 +0000 (+0000) Subject: Fix unused parameter warning after last commit (r62818). X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/efc8837250a62bfd9c60b489db955b79b96ef311 Fix unused parameter warning after last commit (r62818). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62819 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index 9d63209e47..5fbba53392 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -2469,7 +2469,7 @@ wxPoint wxWindowBase::ConvertDialogToPixels(const wxPoint& pt) // ---------------------------------------------------------------------------- // propagate the colour change event to the subwindows -void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent& event) +void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event)) { wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); while ( node )