From: Vadim Zeitlin Date: Wed, 10 Jun 2009 14:54:09 +0000 (+0000) Subject: don't start menu IDs at 0 to avoid an assert under Mac X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/99bc1313918e09582e45b7437d0d1680caca88ac don't start menu IDs at 0 to avoid an assert under Mac git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60977 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/collpane/collpane.cpp b/samples/collpane/collpane.cpp index 443ed90f72..86ab0252ed 100644 --- a/samples/collpane/collpane.cpp +++ b/samples/collpane/collpane.cpp @@ -55,7 +55,7 @@ // ID for the menu commands enum { - PANE_COLLAPSE, + PANE_COLLAPSE = 100, PANE_EXPAND, PANE_SETLABEL, PANE_SHOWDLG,