Fix column count.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20132 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Patrick K. O'Brien
2003-04-10 23:12:04 +00:00
parent 83e991d00e
commit 5d054a19fd

View File

@@ -50,7 +50,7 @@ class Buffer:
editor = self.editor
pos = editor.GetCurrentPos()
line = editor.LineFromPosition(pos) + 1
col = editor.GetColumn(pos) + 1
col = editor.GetColumn(pos)
status = (self.doc.filepath or self.name, line, col)
return status