X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f5e27805de786dbb3976782ba2a3365c27256031..ab8884aca6f480f3568167c7fe592a03e7e102b2:/include/wx/gtk1/listbox.h diff --git a/include/wx/gtk1/listbox.h b/include/wx/gtk1/listbox.h index 2a062629b6..1b24d42c25 100644 --- a/include/wx/gtk1/listbox.h +++ b/include/wx/gtk1/listbox.h @@ -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(); @@ -90,7 +91,9 @@ public: void SetString( int n, const wxString &string ); void SetStringSelection( const wxString &string, bool select = TRUE ); +#if wxUSE_DRAG_AND_DROP void SetDropTarget( wxDropTarget *dropTarget ); +#endif // implementation @@ -101,8 +104,9 @@ public: void ApplyWidgetStyle(); GtkList *m_list; - wxList m_clientDataList; - wxList m_clientObjectList; + wxList m_clientDataList; + wxList m_clientObjectList; + bool m_hasCheckBoxes; }; #endif // __GTKLISTBOXH__