suppress harmless gcc warning about not handling all enum values in a switch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61105 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-06-17 22:14:47 +00:00
parent a21175918e
commit 4d51143c5e

View File

@@ -180,6 +180,11 @@ void wxBitmapButton::DoSetBitmap(const wxBitmap& bitmap, State which)
// from the normal one
m_disabledSetByUser = true;
break;
default:
// nothing special to do but include the default clause to
// suppress gcc warnings
;
}
}