]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/textctrl.h
Check for m_treeCtrl!=NULL, [ wxwindows-Patches-1953459 ] wxGenericDirCtrl::SetFocus...
[wxWidgets.git] / interface / textctrl.h
index 1b5ff11567cd6c1afc1bed789c5921834c1fac79..b91d166a11ea7b4d14f3ea83402dc8cfcd0b8fa3 100644 (file)
@@ -1319,14 +1319,15 @@ public:
 
     //@{
     /**
-        Operator definitions for appending to a text control, for example:
-    */
-    wxTextCtrl operator(const wxString& s);
-    wxTextCtrl operator(int i);
-    wxTextCtrl operator(long i);
-    wxTextCtrl operator(float f);
-    wxTextCtrl operator(double d);
-    wxTextCtrl operator(char c);
+        Operator definitions for appending to a text control.
+    */
+    wxTextCtrl& operator<<(const wxString& s);
+    wxTextCtrl& operator<<(int i);
+    wxTextCtrl& operator<<(long i);
+    wxTextCtrl& operator<<(float f);
+    wxTextCtrl& operator<<(double d);
+    wxTextCtrl& operator<<(char c);
+    wxTextCtrl& operator<<(wchar_t c);
     //@}
 };