]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listbox.cpp
1. wxFontMapper starts to materialise
[wxWidgets.git] / src / msw / listbox.cpp
index 7220cf5ef11985d647b32a64a9f3c67739c5183d..2168734e0123f4fc4639fa5a378f30a48444cd18 100644 (file)
@@ -50,7 +50,7 @@
 #ifndef __TWIN32__
     #if defined(__GNUWIN32__)
         #ifndef wxUSE_NORLANDER_HEADERS
-            #include <wx/msw/gnuwin32/extra.h>
+            #include "wx/msw/gnuwin32/extra.h"
         #endif
     #endif
 #endif
@@ -230,7 +230,7 @@ bool wxListBox::Create(wxWindow *parent,
 
 wxListBox::~wxListBox()
 {
-//    Free();
+    Free();
 }
 
 void wxListBox::SetupColours()
@@ -348,7 +348,7 @@ int wxListBox::FindString(const wxString& s) const
 
 void wxListBox::Clear()
 {
-//    Free();
+    Free();
 
     ListBox_ResetContent(GetHwnd());
 
@@ -356,7 +356,6 @@ void wxListBox::Clear()
     SetHorizontalExtent();
 }
 
-/*
 void wxListBox::Free()
 {
 #if wxUSE_OWNER_DRAWN
@@ -379,7 +378,7 @@ void wxListBox::Free()
         }
     }
 }
-*/
+
 void wxListBox::SetSelection(int N, bool select)
 {
     wxCHECK_RET( N >= 0 && N < m_noItems,