]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/listbox.h
all delete functions now send delete notification event
[wxWidgets.git] / include / wx / gtk / listbox.h
index fb21e9e100e2abd1dbc29ac38b97a37dc53d0e80..badca50a2cc53f65b9ce8b534b2828afb0d3fdc5 100644 (file)
@@ -52,6 +52,7 @@ public:
                     const wxValidator& validator = wxDefaultValidator,
                    const wxString& name = wxListBoxNameStr )
   {
+      m_hasCheckBoxes = FALSE;
       Create(parent, id, pos, size, n, choices, style, validator, name);
   }
   ~wxListBox();
@@ -102,6 +103,8 @@ public:
     
   GtkList   *m_list;
   wxList     m_clientDataList;
+  wxList     m_clientObjectList;
+  bool       m_hasCheckBoxes;
 };
 
 #endif // __GTKLISTBOXH__