when editin is finished by clicking somewhere
else and thus taking the focus away from the
wxTextCtrl). Also, "delete this" in the middle
of code isn't optimal.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38450
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
m_text->Create(owner, wxID_ANY, m_startValue,
wxPoint(rectLabel.x-4,rectLabel.y-4),
wxSize(rectLabel.width+11,rectLabel.height+8));
m_text->Create(owner, wxID_ANY, m_startValue,
wxPoint(rectLabel.x-4,rectLabel.y-4),
wxSize(rectLabel.width+11,rectLabel.height+8));
m_text->PushEventHandler(this);
}
m_text->PushEventHandler(this);
}
m_text->RemoveEventHandler(this);
m_owner->FinishEditing(m_text);
m_text->RemoveEventHandler(this);
m_owner->FinishEditing(m_text);
+ wxPendingDelete.Append( this );
m_owner->OnRenameCancelled( m_itemEdited );
m_owner->OnRenameCancelled( m_itemEdited );
{
if ( !m_finished && !m_aboutToFinish )
{
{
if ( !m_finished && !m_aboutToFinish )
{
- // We must finish regardless of success, otherwise we'll get
- // focus problems:
- Finish();
-
if ( !AcceptChanges() )
m_owner->OnRenameCancelled( m_itemEdited );
if ( !AcceptChanges() )
m_owner->OnRenameCancelled( m_itemEdited );
- // We must let the native text control handle focus, too, otherwise
- // it could have problems with the cursor (e.g., in wxGTK).
+ // We must let the native text control handle focus