diff options
author | Krzesimir Nowak <qdlacz@gmail.com> | 2018-01-03 09:59:19 +0100 |
---|---|---|
committer | Krzesimir Nowak <qdlacz@gmail.com> | 2018-01-03 09:59:19 +0100 |
commit | 7f300c9da77e1995ad28aa653ee75f0d5ccc34fe (patch) | |
tree | 039b0eae0772f2ee20ff299721bf0fe514c85b17 /examples | |
parent | 6aeae2c828bd6ff1e59bf947e34ebae26170c06c (diff) | |
download | gtk+-7f300c9da77e1995ad28aa653ee75f0d5ccc34fe.tar.gz |
examples, gtk-demo: Fix copy-pasta in signal name
Diffstat (limited to 'examples')
-rw-r--r-- | examples/drawing.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); |