]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix double-click support for wxListBox (#10548)
authorKevin Ollivier <kevino@theolliviers.com>
Sun, 8 Mar 2009 06:42:52 +0000 (06:42 +0000)
committerKevin Ollivier <kevino@theolliviers.com>
Sun, 8 Mar 2009 06:42:52 +0000 (06:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59426 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/cocoa/listbox.mm

index 45f1126bf489249df37523b2017aad597be520b8..b1cf9192ef8777081ce20437812c780e22b9ec7f 100644 (file)
@@ -144,7 +144,7 @@ public :
     virtual void            UpdateLineToEnd( unsigned int n);
 
     virtual void            controlAction(WXWidget slf, void* _cmd, void *sender);
-    virtual void            controlDoubleAction(void* _cmd);
+    virtual void            controlDoubleAction(WXWidget slf, void* _cmd, void *sender);
 protected :
     wxNSTableView*          m_tableView ;
     
@@ -496,7 +496,7 @@ void wxListWidgetCocoaImpl::controlAction(WXWidget slf,void* _cmd, void *sender)
     list->HandleLineEvent( sel, false );
 }
 
-void wxListWidgetCocoaImpl::controlDoubleAction(void* _cmd)
+void wxListWidgetCocoaImpl::controlDoubleAction(WXWidget slf,void* _cmd, void *sender)
 {
     wxListBox *list = static_cast<wxListBox*> ( GetWXPeer());
     wxCHECK_RET( list != NULL , wxT("Listbox expected"));