X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/33381c829bba890f5d0e0642dbe2fdfa60fafd4d..8de28db94f9d03acfcbbbac841c26a2c40223618:/include/wx/stc/stc.h diff --git a/include/wx/stc/stc.h b/include/wx/stc/stc.h index 8dfe9a92f4..6618f7dec1 100644 --- a/include/wx/stc/stc.h +++ b/include/wx/stc/stc.h @@ -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);