From a43c3ed05748f609f03d72142aa961dce19da41e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 28 Sep 2006 23:09:42 +0000 Subject: [PATCH] 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 --- src/dfb/toplevel.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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 ) -- 2.45.2