]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textctrl.h
Compilation fix for OS/2.
[wxWidgets.git] / include / wx / textctrl.h
index 582cf855cc5cbe3c189217f3c8ea9a02d9f9e986..a944b5d8baf01d29710b815685d7275e57c58aaf 100644 (file)
@@ -70,6 +70,11 @@ typedef long wxTextCoord;
 
 WXDLLEXPORT_DATA(extern const wxChar*) wxTextCtrlNameStr;
 
+// this is intentionally not enum to avoid warning fixes with
+// typecasting from enum type to wxTextCoord
+const wxTextCoord wxOutOfRangeTextCoord = -1;
+const wxTextCoord wxInvalidTextCoord    = -2;
+
 // ----------------------------------------------------------------------------
 // wxTextCtrl style flags
 // ----------------------------------------------------------------------------
@@ -359,7 +364,7 @@ public:
     virtual void SetInsertionPoint(long pos) = 0;
     virtual void SetInsertionPointEnd() = 0;
     virtual long GetInsertionPoint() const = 0;
-    virtual long GetLastPosition() const = 0;
+    virtual wxTextPos GetLastPosition() const = 0;
 
     virtual void SetSelection(long from, long to) = 0;
     virtual void SelectAll();