]> git.saurik.com Git - wxWidgets.git/commitdiff
suppress gcc warning about DWET_XXX enumeration values not handled in switch
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 28 Sep 2006 23:09:42 +0000 (23:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 28 Sep 2006 23:09:42 +0000 (23:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41498 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/dfb/toplevel.cpp

index 508999102c1741dedf251be2842e5012dde87254..c7f23b52df4246338aba7e12f37a079631f71de9 100644 (file)
@@ -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 )