]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/textctrl.h
fix for VC6
[wxWidgets.git] / include / wx / gtk / textctrl.h
index 0d5c1189347824915fc3d4c6400906b56517ac8b..da2f70bbbd6f1fa13368ab1210ff65f6dbc80b26 100644 (file)
@@ -212,7 +212,17 @@ private:
     // encoding
     wxFontEncoding GetTextEncoding() const;
 
+    // returns either m_text or m_buffer depending on whether the control is
+    // single- or multi-line; convenient for the GTK+ functions which work with
+    // both
+    void *GetTextObject() const
+    {
+        return IsMultiLine() ? wx_static_cast(void *, m_buffer)
+                             : wx_static_cast(void *, m_text);
+    }
+
 
+    // the widget used for single line controls
     GtkWidget  *m_text;
 
     bool        m_modified:1;