]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed wxListCtrl::EditLabel for MSW (ListView_EditLabel fails if
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 10 May 2001 16:41:47 +0000 (16:41 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 10 May 2001 16:41:47 +0000 (16:41 +0000)
the control does not have focus, so I changed EditLabel to always set focus to *this
before calling LV_EditLabel). This fixes wxEditableListBox.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10112 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/listctrl.cpp

index 6f8fe1c01a4906954280ca14ea0418bcce05add2..633cc77ce830a3ef1623e8882606210e718a8626 100644 (file)
@@ -1049,6 +1049,8 @@ wxTextCtrl* wxListCtrl::EditLabel(long item, wxClassInfo* textControlClass)
 {
     wxASSERT( (textControlClass->IsKindOf(CLASSINFO(wxTextCtrl))) );
 
+    // VS: ListView_EditLabel requires that the list has focus.  
+    SetFocus();
     HWND hWnd = (HWND) ListView_EditLabel(GetHwnd(), item);
 
     if (m_textCtrl)