projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
require semicolon after wxDECLARE/DEFINE_EVENT() (closes #10456)
[wxWidgets.git]
/
src
/
common
/
textentrycmn.cpp
diff --git
a/src/common/textentrycmn.cpp
b/src/common/textentrycmn.cpp
index 8e0551c3dbac703c86d23859cbc64cf0ace15b9e..b179499381aabc301d04f1350149301da92d740e 100644
(file)
--- a/
src/common/textentrycmn.cpp
+++ b/
src/common/textentrycmn.cpp
@@
-73,6
+73,7
@@
void wxTextEntryBase::Replace(long from, long to, const wxString& value)
Remove(from, to);
}
+ SetInsertionPoint(from);
WriteText(value);
}