]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/cocoa/listbox.mm
Fix horizontal mouse wheel scrolling in wxGTK.
[wxWidgets.git] / src / osx / cocoa / listbox.mm
index b30cb3642e066cbfbb50d66f978341acecb7d832..0cc450997e648a08a5ab63e63d311689b2a8427c 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     1998-01-01
-// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
@@ -303,7 +302,7 @@ protected:
         wxListBox *list = static_cast<wxListBox*> ( impl->GetWXPeer());
         wxCHECK_RET( list != NULL , wxT("Listbox expected"));
         
-        wxCommandEvent event( wxEVT_COMMAND_LISTBOX_SELECTED, list->GetId() );
+        wxCommandEvent event( wxEVT_LISTBOX, list->GetId() );
         
         if ((row < 0) || (row > (int) list->GetCount()))  // OS X can select an item below the last item
             return;
@@ -321,10 +320,7 @@ protected:
     while (columnIndex--)
         [[(NSTableColumn *)[tableColumns objectAtIndex:columnIndex] dataCell] setFont:aFont];
 
-    // todo introduce a common NSLayoutManager instance for all and use new method
-#ifndef __LP64__
-    [self setRowHeight:[aFont defaultLineHeightForFont]+2];
-#endif
+    [self setRowHeight:[gNSLayoutManager defaultLineHeightForFont:aFont]+2];
 }
 
 - (void) setControlSize:(NSControlSize) size