X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ce63f2e9eb49fb50a6dbd188f29116a670c9f922..6d2190fcb4ba8c0a297a90ac233e88ad0c5cd13f:/src/osx/button_osx.cpp?ds=sidebyside diff --git a/src/osx/button_osx.cpp b/src/osx/button_osx.cpp index 32417fa88c..e604d21483 100644 --- a/src/osx/button_osx.cpp +++ b/src/osx/button_osx.cpp @@ -4,7 +4,6 @@ // Author: Stefan Csomor // Modified by: // Created: 1998-01-01 -// RCS-ID: $Id$ // Copyright: (c) Stefan Csomor // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -128,7 +127,7 @@ void wxButton::Command (wxCommandEvent & WXUNUSED(event)) bool wxButton::OSXHandleClicked( double WXUNUSED(timestampsec) ) { - wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, m_windowId); + wxCommandEvent event(wxEVT_BUTTON, m_windowId); event.SetEventObject(this); ProcessCommand(event); return true; @@ -173,7 +172,7 @@ bool wxDisclosureTriangle::IsOpen() const bool wxDisclosureTriangle::OSXHandleClicked( double WXUNUSED(timestampsec) ) { // Just emit button event for now - wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, m_windowId); + wxCommandEvent event(wxEVT_BUTTON, m_windowId); event.SetEventObject(this); ProcessCommand(event);