]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/vlbox.cpp
Made the #if wxUSE_UNICODE check correctly...
[wxWidgets.git] / src / generic / vlbox.cpp
index fedb4496a4ce98c060cd04fe213859c9c3bc63cf..50a484eec634cdf492f1f82398b548874161bc32 100644 (file)
@@ -48,6 +48,8 @@ END_EVENT_TABLE()
 // implementation
 // ============================================================================
 
+IMPLEMENT_ABSTRACT_CLASS(wxVListBox, wxVScrolledWindow)
+
 // ----------------------------------------------------------------------------
 // wxVListBox creation
 // ----------------------------------------------------------------------------
@@ -484,7 +486,7 @@ void wxVListBox::OnKeyDown(wxKeyEvent& event)
     // flags for DoHandleItemClick()
     int flags = ItemClick_Kbd;
 
-    int current = 0; // just to silent the stupid compiler warnings
+    int current;
     switch ( event.GetKeyCode() )
     {
         case WXK_HOME:
@@ -537,6 +539,8 @@ void wxVListBox::OnKeyDown(wxKeyEvent& event)
 
         default:
             event.Skip();
+            current = 0; // just to silent the stupid compiler warnings
+            wxUnusedVar(current);
             return;
     }