wxTextCtrl& wxTextCtrlBase::operator<<(long i) { wxString str; str.Printf(wxT("%ld"), i); AppendText(str); return *TEXTCTRL(this); }
wxTextCtrl& wxTextCtrlBase::operator<<(double d) { wxString str; str.Printf(wxT("%.2f"), d); AppendText(str); return *TEXTCTRL(this); }
wxTextCtrl& wxTextCtrlBase::operator<<(const wxString& s) { AppendText(s); return *TEXTCTRL(this); }