Fix invalid parameter names in wxSTC docs

This commit is contained in:
New Pagodi
2019-07-14 12:53:29 -05:00
parent 3ccb912e62
commit f18699c0af
2 changed files with 6 additions and 6 deletions

View File

@@ -7466,7 +7466,7 @@ public:
@param value
The value to replace the existing text with.
*/
virtual void Replace(long from, long to, const wxString& text);
virtual void Replace(long from, long to, const wxString& value);
/**
Sets the insertion point at the given position.
@@ -7599,7 +7599,7 @@ public:
@return
The length of the line, or -1 if @a lineNo was invalid.
*/
virtual int GetLineLength(long n) const;
virtual int GetLineLength(long lineNo) const;
/**
Returns the contents of a given line in the text control, not including
@@ -7611,7 +7611,7 @@ public:
@return
The contents of the line.
*/
virtual wxString GetLineText(long n) const;
virtual wxString GetLineText(long lineNo) const;
/**
Returns the number of lines in the text control buffer.

View File

@@ -406,7 +406,7 @@ public:
@param value
The value to replace the existing text with.
*/
virtual void Replace(long from, long to, const wxString& text);
virtual void Replace(long from, long to, const wxString& value);
/**
Sets the insertion point at the given position.
@@ -539,7 +539,7 @@ public:
@return
The length of the line, or -1 if @a lineNo was invalid.
*/
virtual int GetLineLength(long n) const;
virtual int GetLineLength(long lineNo) const;
/**
Returns the contents of a given line in the text control, not including
@@ -551,7 +551,7 @@ public:
@return
The contents of the line.
*/
virtual wxString GetLineText(long n) const;
virtual wxString GetLineText(long lineNo) const;
/**
Returns the number of lines in the text control buffer.