From: Vadim Zeitlin Date: Thu, 28 Sep 2006 23:09:42 +0000 (+0000) Subject: suppress gcc warning about DWET_XXX enumeration values not handled in switch X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a43c3ed05748f609f03d72142aa961dce19da41e suppress gcc warning about DWET_XXX enumeration values not handled in switch git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41498 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/dfb/toplevel.cpp b/src/dfb/toplevel.cpp index 508999102c..c7f23b52df 100644 --- a/src/dfb/toplevel.cpp +++ b/src/dfb/toplevel.cpp @@ -527,6 +527,10 @@ void wxTopLevelWindowDFB::HandleDFBWindowEvent(const wxDFBWindowEvent& event_) wxFAIL_MSG( _T("invalid event type") ); break; } + + default: + // we're not interested in them here + break; } if ( !recipient )