Commit c3924e6f authored by Dick Hollenbeck's avatar Dick Hollenbeck

fix bug lp:663929

parent 8b4bc768
This diff is collapsed.
...@@ -115,7 +115,7 @@ public: ...@@ -115,7 +115,7 @@ public:
* of lines of text. The returned string is useful for reporting error * of lines of text. The returned string is useful for reporting error
* messages. * messages.
*/ */
const wxString& GetSource() const wxString& GetSource() const
{ {
return source; return source;
} }
...@@ -135,7 +135,7 @@ public: ...@@ -135,7 +135,7 @@ public:
* returns the line number of the last line read from this LINE_READER. Lines * returns the line number of the last line read from this LINE_READER. Lines
* start from 1. * start from 1.
*/ */
int LineNumber() int LineNumber() const
{ {
return lineNum; return lineNum;
} }
...@@ -144,7 +144,7 @@ public: ...@@ -144,7 +144,7 @@ public:
* Function Length * Function Length
* returns the number of bytes in the last line read from this LINE_READER. * returns the number of bytes in the last line read from this LINE_READER.
*/ */
unsigned Length() unsigned Length() const
{ {
return length; return length;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment