]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textctrl.h
correct the signature of the overriden Reparent()
[wxWidgets.git] / include / wx / textctrl.h
index 5ace5a3d1936c8ab164ad29cd148526d478cecfe..952862d44ed4a4942b27979d9ff7f0ec9b08dd15 100644 (file)
@@ -615,9 +615,10 @@ public:
     wxTextCtrl& operator<<(const wxString& s);
     wxTextCtrl& operator<<(int i);
     wxTextCtrl& operator<<(long i);
-    wxTextCtrl& operator<<(float f);
+    wxTextCtrl& operator<<(float f) { return *this << double(f); }
     wxTextCtrl& operator<<(double d);
-    wxTextCtrl& operator<<(const wxChar c);
+    wxTextCtrl& operator<<(char c) { return *this << wxString(c); }
+    wxTextCtrl& operator<<(wchar_t c) { return *this << wxString(c); }
 
     // insert the character which would have resulted from this key event,
     // return true if anything has been inserted