Add length parameter to AddTextRaw and AppendTextRaw. Closes #1358
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70533 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -4049,7 +4049,7 @@ public:
|
||||
// what is used internally by Scintilla in unicode builds.
|
||||
|
||||
// Add text to the document at current position.
|
||||
void AddTextRaw(const char* text);
|
||||
void AddTextRaw(const char* text, int length=-1);
|
||||
|
||||
// Insert string at a position.
|
||||
void InsertTextRaw(int pos, const char* text);
|
||||
@@ -4078,7 +4078,7 @@ public:
|
||||
wxCharBuffer GetTextRaw();
|
||||
|
||||
// Append a string to the end of the document without changing the selection.
|
||||
void AppendTextRaw(const char* text);
|
||||
void AppendTextRaw(const char* text, int length=-1);
|
||||
|
||||
#ifdef SWIG
|
||||
%pythoncode "_stc_utf8_methods.py"
|
||||
|
Reference in New Issue
Block a user