]> git.saurik.com Git - wxWidgets.git/commitdiff
Added note about dangers of adding and deleting items in wxEVT_COMMAND_COMBOBOX_CLOSE...
authorJaakko Salli <jaakko.salli@dnainternet.net>
Fri, 2 Oct 2009 14:15:35 +0000 (14:15 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Fri, 2 Oct 2009 14:15:35 +0000 (14:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62224 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/combo.h
interface/wx/combobox.h

index 38ef1f93425111630291330c3474968993ac610d..25e1ef7756a92284afd855935f8852d8fc4c2c1c 100644 (file)
@@ -310,6 +310,7 @@ struct wxComboCtrlFeatures
     @event{EVT_COMBOX_CLOSEUP(id, func)}
            Process a wxEVT_COMMAND_COMBOBOX_CLOSEUP event, which is generated
            when the popup window of the combo control disappears (closes up).
+           You should avoid adding or deleting items in this event.
     @endEventTable
 
     @library{wxbase}
index 93e7f3eee7a4266a494064127c01d3a60a57bdab..1cdc7125aa54b1acd81bdc923767976953607b01 100644 (file)
@@ -63,7 +63,8 @@
            Process a wxEVT_COMMAND_COMBOBOX_CLOSEUP event, which is generated
            when the list box of the combo box disappears (closes up). This
            event is only generated for the same platforms as
-           wxEVT_COMMAND_COMBOBOX_DROPDOWN above.
+           wxEVT_COMMAND_COMBOBOX_DROPDOWN above. Also note that only wxMSW
+           supports adding or deleting items in this event.
     @endEventTable
 
     @library{wxcore}