]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/button.cpp
Fixed a minor bug in hotKey handling.
[wxWidgets.git] / src / gtk / button.cpp
index 62e357c733284bc151a8a3e81a4a6018314b0648..140e4380ef0b5baefad76bbb1d41cf0a8ea390c0 100644 (file)
@@ -47,8 +47,6 @@ static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *
     if (!button->m_hasVMT) return;
     if (g_blockEventsOnDrag) return;
     
-    printf( "clicked: %s.\n", button->GetLabel().c_str() );
-    
     wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId());
     event.SetEventObject(button);
     button->GetEventHandler()->ProcessEvent(event);