]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/vlbox.cpp
Add comments explaining the workaround for mingw 3.2.3
[wxWidgets.git] / src / generic / vlbox.cpp
index 2830f19c7b8c5b73829e991a05be1ef139766e43..89438eaae9e23a17c6b79efe7c0411ee3bb5bae9 100644 (file)
@@ -24,6 +24,8 @@
     #pragma hdrstop
 #endif
 
+#if wxUSE_LISTBOX
+
 #ifndef WX_PRECOMP
     #include "wx/settings.h"
     #include "wx/dcclient.h"
@@ -574,6 +576,8 @@ void wxVListBox::OnKeyDown(wxKeyEvent& event)
 
 void wxVListBox::OnLeftDown(wxMouseEvent& event)
 {
+    SetFocus();
+    
     int item = HitTest(event.GetPosition());
 
     if ( item != wxNOT_FOUND )
@@ -621,3 +625,5 @@ wxVListBox::GetClassDefaultAttributes(wxWindowVariant variant)
 {
     return wxListBox::GetClassDefaultAttributes(variant);
 }
+
+#endif