diff options
author | Dan Gudmundsson <[email protected]> | 2010-08-19 13:04:34 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2010-08-19 13:04:34 +0200 |
commit | 712bd181385967cb23bd421a24c74160cfda23cc (patch) | |
tree | 93e1daf4c316e018265fe9da56bb3a31e04ffe4e /lib/wx/c_src/gen/wxe_funcs.cpp | |
parent | 4961daa3b35822ae4221209f72767aabad113368 (diff) | |
download | otp-712bd181385967cb23bd421a24c74160cfda23cc.tar.gz otp-712bd181385967cb23bd421a24c74160cfda23cc.tar.bz2 otp-712bd181385967cb23bd421a24c74160cfda23cc.zip |
Added missing wxTextCtrl:editLabel/2.
Reported by akorosmezey.
Diffstat (limited to 'lib/wx/c_src/gen/wxe_funcs.cpp')
-rw-r--r-- | lib/wx/c_src/gen/wxe_funcs.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/wx/c_src/gen/wxe_funcs.cpp b/lib/wx/c_src/gen/wxe_funcs.cpp index 11aac7cd5c..8c056bbb91 100644 --- a/lib/wx/c_src/gen/wxe_funcs.cpp +++ b/lib/wx/c_src/gen/wxe_funcs.cpp @@ -18501,6 +18501,15 @@ case wxTreeCtrl_DeleteChildren: { // wxTreeCtrl::DeleteChildren This->DeleteChildren(item); break; } +case wxTreeCtrl_EditLabel: { // wxTreeCtrl::EditLabel + wxTreeCtrl *This = (wxTreeCtrl *) getPtr(bp,memenv); bp += 4; + bp += 4; /* Align */ + wxTreeItemId item = wxTreeItemId((void *) *(wxUint64 *) bp); bp += 8; + if(!This) throw wxe_badarg(0); + wxTextCtrl * Result = (wxTextCtrl*)This->EditLabel(item); + rt.addRef(getRef((void *)Result,memenv), "wxTextCtrl"); + break; +} case wxTreeCtrl_EnsureVisible: { // wxTreeCtrl::EnsureVisible wxTreeCtrl *This = (wxTreeCtrl *) getPtr(bp,memenv); bp += 4; bp += 4; /* Align */ |