]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.h.in
Add length parameter to AddTextRaw and AppendTextRaw. Closes #1358
[wxWidgets.git] / src / stc / stc.h.in
index 55e0501f788fd5465e62dfdf25e5b3dd7705083f..ff6a136ab9a543603733a5d382598fbbcc2f7336 100644 (file)
@@ -247,7 +247,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);
@@ -276,7 +276,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"