]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textfile.h
a file I forgot to check in (sorry Julian)
[wxWidgets.git] / include / wx / textfile.h
index 4aefef1e5a8c9adcc3cb2e904df3966570d89756..1747218f2715caf5970d132bf93093ef84e50ac4 100644 (file)
@@ -74,7 +74,7 @@ public:
     // you're using "direct access" i.e. GetLine()
   size_t GetCurrentLine() const { return m_nCurLine; }
   void GoToLine(size_t n) { m_nCurLine = n; }
-  bool Eof() const { return m_nCurLine == m_aLines.Count(); }
+  bool Eof() const { return m_nCurLine == m_aLines.Count() - 1; }
 
     // these methods allow more "iterator-like" traversal of the list of
     // lines, i.e. you may write something like: