Apply #12469: Do not start rename timer if the generic implementation is used which has its own rename timer already.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@65722 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Tim Kosse
2010-10-02 08:53:36 +00:00
parent ea44a9343c
commit db7213c07f

View File

@@ -622,7 +622,8 @@ void wxListCtrl::OnLeftDown(wxMouseEvent& event)
(hitResult & wxLIST_HITTEST_ONITEMLABEL) &&
HasFlag(wxLC_EDIT_LABELS) )
{
m_renameTimer->Start( 100, true );
if (!m_genericImpl)
m_renameTimer->Start( 100, true );
}
else
{