From 05d429af9d6e99b598e47b64b2bf7a3d0a9f57f5 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Fri, 3 Jun 2016 12:56:14 -0700 Subject: [PATCH] gsignal: Remove a UTF-8 ellipsis from docs Some compilers have trouble with such sequences. Visual C++ may or may not generate a warning in this particular case depending on if the local code page supports an ellipsis. https://bugzilla.gnome.org/show_bug.cgi?id=767218 --- gobject/gsignal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gobject/gsignal.h b/gobject/gsignal.h index c934b42b6..c699fdfcd 100644 --- a/gobject/gsignal.h +++ b/gobject/gsignal.h @@ -516,7 +516,7 @@ void g_signal_chain_from_overridden_handler (gpointer instance, * gtk_widget_hide (other_widget); * } * - * … + * ... * * g_signal_connect (button, "clicked", * (GCallback) button_clicked_cb, other_widget);