summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Boles <dboles@src.gnome.org>2017-11-22 22:35:25 +0000
committerDaniel Boles <dboles@src.gnome.org>2017-11-22 22:35:25 +0000
commit2c9072314a72bf2ebde30d71c1f770697ef78e8f (patch)
tree9b5901ed7089bc03da96015cf2ce257a8bbd48c7
parentf922aee5e292688621b1162d775e496edbb7e8fd (diff)
downloadgtk+-2c9072314a72bf2ebde30d71c1f770697ef78e8f.tar.gz
Add Since to ::insert-emoji, and some trivialities
Document when these keybinding signals were added.
-rw-r--r--gtk/gtkentry.c4
-rw-r--r--gtk/gtktextview.c5
2 files changed, 6 insertions, 3 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index 7d5c911e01..e55d8beeae 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -1909,9 +1909,11 @@ gtk_entry_class_init (GtkEntryClass *class)
*
* The ::insert-emoji signal is a
* [keybinding signal][GtkBindingSignal]
- * which gets emitted to present the Emoji chooser for the entry.
+ * which gets emitted to present the Emoji chooser for the @entry.
*
* The default bindings for this signal are Ctrl-. and Ctrl-;
+ *
+ * Since: 3.22
*/
signals[INSERT_EMOJI] =
g_signal_new (I_("insert-emoji"),
diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c
index 61395efe59..3242a3bd9f 100644
--- a/gtk/gtktextview.c
+++ b/gtk/gtktextview.c
@@ -1454,9 +1454,11 @@ G_GNUC_END_IGNORE_DEPRECATIONS
*
* The ::insert-emoji signal is a
* [keybinding signal][GtkBindingSignal]
- * which gets emitted to present the Emoji chooser for the text_view.
+ * which gets emitted to present the Emoji chooser for the @text_view.
*
* The default bindings for this signal are Ctrl-. and Ctrl-;
+ *
+ * Since: 3.22
*/
signals[INSERT_EMOJI] =
g_signal_new (I_("insert-emoji"),
@@ -11477,4 +11479,3 @@ gtk_text_view_insert_emoji (GtkTextView *text_view)
gtk_popover_popup (GTK_POPOVER (chooser));
}
-