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:
@@ -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);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user