changes to match recent CVS updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16270 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-07-25 01:28:56 +00:00
parent cc164686f3
commit 64c06a5085
6 changed files with 92 additions and 20 deletions

View File

@@ -857,6 +857,10 @@ public:
void SelectAll();
void SetEditable(bool editable);
bool IsSingleLine();
bool IsMultiLine();
%addmethods {
void write(const wxString& text) {
self->AppendText(text);
@@ -866,7 +870,7 @@ public:
// TODO: replace this when the method is really added to wxTextCtrl
%addmethods {
wxString GetString(long from, long to) {
return self->GetValue().Mid(from, to-from);
return self->GetValue().Mid(from, to - from);
}
}
};