From 7f300c9da77e1995ad28aa653ee75f0d5ccc34fe Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Wed, 3 Jan 2018 09:59:19 +0100 Subject: examples, gtk-demo: Fix copy-pasta in signal name --- examples/drawing.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/drawing.c b/examples/drawing.c index c1f64b7e54..1eebb34ca4 100644 --- a/examples/drawing.c +++ b/examples/drawing.c @@ -42,8 +42,8 @@ size_allocate_cb (GtkWidget *widget, } } -/* Redraw the screen from the surface. Note that the ::draw - * signal receives a ready-to-be-used cairo_t that is already +/* Redraw the screen from the surface. Note that the draw + * callback receives a ready-to-be-used cairo_t that is already * clipped to only draw the exposed areas of the widget */ static void @@ -164,7 +164,7 @@ activate (GtkApplication *app, g_signal_connect (drag, "drag-begin", G_CALLBACK (drag_begin), drawing_area); g_signal_connect (drag, "drag-update", G_CALLBACK (drag_update), drawing_area); - g_signal_connect (drag, "drag-begin", G_CALLBACK (drag_end), drawing_area); + g_signal_connect (drag, "drag-end", G_CALLBACK (drag_end), drawing_area); press = gtk_gesture_multi_press_new (drawing_area); gtk_gesture_single_set_button (GTK_GESTURE_SINGLE (press), GDK_BUTTON_SECONDARY); -- cgit v1.2.1