X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/906c935a80b10d53cecf57f71ab5f3f4f1d529ec..5278469615164a60b22435aae4734e106aba540d:/src/gtk1/fontdlg.cpp?ds=sidebyside diff --git a/src/gtk1/fontdlg.cpp b/src/gtk1/fontdlg.cpp index 5b9a04bba4..095d476d72 100644 --- a/src/gtk1/fontdlg.cpp +++ b/src/gtk1/fontdlg.cpp @@ -2,7 +2,6 @@ // Name: src/gtk1/fontdlg.cpp // Purpose: wxFontDialog // Author: Robert Roebling -// Id: $Id$ // Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -82,7 +81,7 @@ void gtk_fontdialog_ok_callback( GtkWidget *WXUNUSED(widget), wxFontDialog *dial g_free( fontname ); - wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK); + wxCommandEvent event(wxEVT_BUTTON, wxID_OK); event.SetEventObject( dialog ); dialog->HandleWindowEvent( event ); } @@ -99,7 +98,7 @@ void gtk_fontdialog_cancel_callback( GtkWidget *WXUNUSED(w), wxFontDialog *dialo if (g_isIdle) wxapp_install_idle_handler(); - wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); + wxCommandEvent event(wxEVT_BUTTON, wxID_CANCEL); event.SetEventObject( dialog ); dialog->HandleWindowEvent( event ); }