Suppress unused parameter warning in wxRichTextCtrl code.

The entire event handler should arguably be removed entirely if it's unused,
but for now just avoid the warning.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78286 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-12-20 21:51:41 +00:00
parent 1966dfb17d
commit 3ffce75045

View File

@@ -510,7 +510,7 @@ void wxRichTextBackgroundPage::OnRichtextShadowUpdate( wxUpdateUIEvent& event )
* wxEVT_UPDATE_UI event handler for ID_RICHTEXTSHADOWCOLOURSWATCHCTRL
*/
void wxRichTextBackgroundPage::OnRichtextshadowcolourswatchctrlUpdate( wxUpdateUIEvent& event )
void wxRichTextBackgroundPage::OnRichtextshadowcolourswatchctrlUpdate( wxUpdateUIEvent& WXUNUSED(event) )
{
// For now don't disable because of ugly disabled border on Windows
}