]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.cpp
Don't use the 'unix-like' check for Palm.
[wxWidgets.git] / src / stc / stc.cpp
index b3b3cd2765934fc9eee85b8337c6c9b373f1dd6f..f534906177dad0be62b4d5de0003ff3049f25474 100644 (file)
@@ -2408,6 +2408,12 @@ void wxStyledTextCtrl::Allocate(int bytes) {
     SendMsg(2446, bytes, 0);
 }
 
+// Find the position of a column on a line taking into account tabs and 
+// multi-byte characters. If beyond end of line, return line end position.
+int wxStyledTextCtrl::FindColumn(int line, int column) {
+    return SendMsg(2456, line, column);
+}
+
 // Start notifying the container of all key presses and commands.
 void wxStyledTextCtrl::StartRecord() {
     SendMsg(3001, 0, 0);