made SetItemText() work for the item which we're about to start editing
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15599 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -891,6 +891,20 @@ void wxTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text)
|
||||
wxTreeViewItem tvItem(item, TVIF_TEXT);
|
||||
tvItem.pszText = (wxChar *)text.c_str(); // conversion is ok
|
||||
DoSetItem(&tvItem);
|
||||
|
||||
// when setting the text of the item being edited, the text control should
|
||||
// be updated to reflect the new text as well, otherwise calling
|
||||
// SetItemText() in the OnBeginLabelEdit() handler doesn't have any effect
|
||||
//
|
||||
// don't use GetEditControl() here because m_textCtrl is not set yet
|
||||
HWND hwndEdit = TreeView_GetEditControl(GetHwnd());
|
||||
if ( hwndEdit )
|
||||
{
|
||||
if ( item == GetSelection() )
|
||||
{
|
||||
::SetWindowText(hwndEdit, text);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int wxTreeCtrl::DoGetItemImageFromData(const wxTreeItemId& item,
|
||||
|
Reference in New Issue
Block a user