// ----------------------------------------------------------------------------
// choose the next/prev/specified (by numArg) item
-#define wxACTION_COMBOBOX_SELECT_NEXT _T("next")
-#define wxACTION_COMBOBOX_SELECT_PREV _T("prev")
-#define wxACTION_COMBOBOX_SELECT _T("select")
+#define wxACTION_COMBOBOX_SELECT_NEXT wxT("next")
+#define wxACTION_COMBOBOX_SELECT_PREV wxT("prev")
+#define wxACTION_COMBOBOX_SELECT wxT("select")
// ----------------------------------------------------------------------------
// implement the combobox interface
// wxTextCtrl methods
- virtual wxString GetValue() const;
+ virtual wxString GetValue() const { return DoGetValue(); }
virtual void SetValue(const wxString& value);
virtual void WriteText(const wxString& value);
virtual void Copy();
virtual void SetClientDataType(wxClientDataType clientDataItemsType);
protected:
+ virtual wxString DoGetValue() const;
+
virtual int DoInsertItems(const wxArrayStringsAdapter& items,
unsigned int pos,
void **clientData, wxClientDataType type);