A couple little fixes for wxSTC

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11559 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-09-04 23:42:13 +00:00
parent 33381c829b
commit 8de28db94f
8 changed files with 104 additions and 58 deletions

View File

@@ -734,7 +734,11 @@ public:
// Retrieve the text of the line containing the caret.
// Returns the index of the caret on the line.
wxString GetCurLine(int* OUTPUT=NULL);
#ifdef SWIG
wxString GetCurLine(int* OUTPUT);
#else
wxString GetCurLine(int* linePos=NULL);
#endif
// Retrieve the position of the last correctly styled character.
int GetEndStyled();
@@ -1417,10 +1421,10 @@ public:
int GetModEventMask();
// Change internal focus flag
void SetFocus(bool focus);
void SetSTCFocus(bool focus);
// Get internal focus flag
bool GetFocus();
bool GetSTCFocus();
// Change error status - 0 = OK
void SetStatus(int statusCode);