summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2016-06-03 12:56:14 -0700
committerMatthias Clasen <mclasen@redhat.com>2016-08-17 12:07:39 -0400
commit5096d37aaef471f76683f37ca3d72926e81210bb (patch)
tree22675d9c621c3f10470b9f7c302d7c91bd7904bf
parent477410b502f200442a767632c6b6ba52ab930787 (diff)
downloadglib-5096d37aaef471f76683f37ca3d72926e81210bb.tar.gz
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
-rw-r--r--gobject/gsignal.h2
1 files changed, 1 insertions, 1 deletions
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);