X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f55d21ebb5d3392dd7e5990f7bdbb523f3089f6d..220f2d5c4d561b4ea7dd87a6d972a0e87b9ec558:/contrib/include/wx/gizmos/editlbox.h diff --git a/contrib/include/wx/gizmos/editlbox.h b/contrib/include/wx/gizmos/editlbox.h index 256c50511f..43e339d8d7 100644 --- a/contrib/include/wx/gizmos/editlbox.h +++ b/contrib/include/wx/gizmos/editlbox.h @@ -17,15 +17,21 @@ #include "wx/panel.h" +#ifdef GIZMOISDLL +#define GIZMODLLEXPORT WXDLLEXPORT +#else +#define GIZMODLLEXPORT +#endif + class WXDLLEXPORT wxBitmapButton; class WXDLLEXPORT wxListCtrl; class WXDLLEXPORT wxListEvent; - + // This class provides a composite control that lets the // user easily enter list of strings -class WXDLLEXPORT wxEditableListBox : public wxPanel +class GIZMODLLEXPORT wxEditableListBox : public wxPanel { DECLARE_CLASS(wxEditableListBox); @@ -33,7 +39,8 @@ public: wxEditableListBox(wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize); + const wxSize& size = wxDefaultSize, + const wxString& name = wxT("editableListBox")); void SetStrings(const wxArrayString& strings); void GetStrings(wxArrayString& strings);