diff options
author | Daniel Boles <dboles@src.gnome.org> | 2017-11-22 22:35:25 +0000 |
---|---|---|
committer | Daniel Boles <dboles@src.gnome.org> | 2017-11-22 22:36:31 +0000 |
commit | 9fef90b0f764999793734ce918ae69f332543228 (patch) | |
tree | 255b9bcc1d43ae5967e5785ea6fe1bac503d0332 /gtk/gtktextview.c | |
parent | 567447456ef526028dea0d54bbd7a86355fa9979 (diff) | |
download | gtk+-9fef90b0f764999793734ce918ae69f332543228.tar.gz |
Add Since to ::insert-emoji, and some trivialities
Document when these keybinding signals were added.
Diffstat (limited to 'gtk/gtktextview.c')
-rw-r--r-- | gtk/gtktextview.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c index 86644637cf..67a291f8b3 100644 --- a/gtk/gtktextview.c +++ b/gtk/gtktextview.c @@ -1411,9 +1411,11 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * * 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"), @@ -10374,4 +10376,3 @@ gtk_text_view_insert_emoji (GtkTextView *text_view) gtk_popover_popup (GTK_POPOVER (chooser)); } - |