Add Since to ::insert-emoji, and some trivialities

Document when these keybinding signals were added.
This commit is contained in:
Daniel Boles 2017-11-22 22:35:25 +00:00
parent 567447456e
commit 9fef90b0f7
2 changed files with 6 additions and 3 deletions

View File

@ -1719,9 +1719,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"),

View File

@ -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));
}