]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/button.cpp
Fix stc doxygen warnings and regen stc files.
[wxWidgets.git] / src / gtk / button.cpp
index f5f76a7b107ee5dc4888e4fc30dd67ea5292587b..0dbe3a70c0e5844948ab05132398c2fa66e8b0c4 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        src/gtk/button.cpp
 // Purpose:
 // Author:      Robert Roebling
-// Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -36,7 +35,7 @@ wxgtk_button_clicked_callback(GtkWidget *WXUNUSED(widget), wxButton *button)
     if ( button->GTKShouldIgnoreEvent() )
         return;
 
-    wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId());
+    wxCommandEvent event(wxEVT_BUTTON, button->GetId());
     event.SetEventObject(button);
     button->HandleWindowEvent(event);
 }