summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-06-03 16:04:22 +0300
committermonsta <[email protected]>2016-06-03 16:04:22 +0300
commit011499c47f8ffd1700722d40a05a9b9475830760 (patch)
treefdd501b6e0ca66abff371f70f03107d22dbc1996
parent5808c1c34efda05e0084e5c6b237ec8076a744bf (diff)
downloadmate-desktop-011499c47f8ffd1700722d40a05a9b9475830760.tar.bz2
mate-desktop-011499c47f8ffd1700722d40a05a9b9475830760.tar.xz
fix minor build warning
-rw-r--r--tools/mate-color-select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mate-color-select.c b/tools/mate-color-select.c
index 5b8d2a7..3821eff 100644
--- a/tools/mate-color-select.c
+++ b/tools/mate-color-select.c
@@ -70,7 +70,7 @@ main (int argc, char **argv)
widget = gtk_button_new_from_stock (GTK_STOCK_COPY);
gtk_container_add (GTK_CONTAINER (gtk_dialog_get_action_area (GTK_DIALOG (color_dialog))), widget);
- g_signal_connect (widget, "button-release-event", copy_color, color_dialog);
+ g_signal_connect (widget, "button-release-event", G_CALLBACK (copy_color), color_dialog);
widget = gtk_button_new_from_stock (GTK_STOCK_CLOSE);
gtk_container_add (GTK_CONTAINER (gtk_dialog_get_action_area (GTK_DIALOG (color_dialog))), widget);