diff options
Diffstat (limited to 'gtk/gtktextprivate.h')
-rw-r--r-- | gtk/gtktextprivate.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gtk/gtktextprivate.h b/gtk/gtktextprivate.h index 0fde7d8fe4..b6a61843af 100644 --- a/gtk/gtktextprivate.h +++ b/gtk/gtktextprivate.h @@ -34,30 +34,30 @@ typedef struct _GtkTextClass GtkTextClass; /*<private> * GtkTextClass: * @parent_class: The parent class. - * @activate: Class handler for the #GtkText::activate signal. The default + * @activate: Class handler for the `GtkText::activate` signal. The default * implementation activates the gtk.activate-default action. - * @move_cursor: Class handler for the #GtkText::move-cursor signal. The - * default implementation specifies the standard #GtkText cursor movement + * @move_cursor: Class handler for the `GtkText::move-cursor` signal. The + * default implementation specifies the standard `GtkText` cursor movement * behavior. - * @insert_at_cursor: Class handler for the #GtkText::insert-at-cursor signal. + * @insert_at_cursor: Class handler for the `GtkText::insert-at-cursor` signal. * The default implementation inserts text at the cursor. - * @delete_from_cursor: Class handler for the #GtkText::delete-from-cursor + * @delete_from_cursor: Class handler for the `GtkText::delete-from-cursor` * signal. The default implementation deletes the selection or the specified * number of characters or words. - * @backspace: Class handler for the #GtkText::backspace signal. The default + * @backspace: Class handler for the `GtkText::backspace` signal. The default * implementation deletes the selection or a single character or word. - * @cut_clipboard: Class handler for the #GtkText::cut-clipboard signal. The + * @cut_clipboard: Class handler for the `GtkText::cut-clipboard` signal. The * default implementation cuts the selection, if one exists. - * @copy_clipboard: Class handler for the #GtkText::copy-clipboard signal. The + * @copy_clipboard: Class handler for the `GtkText::copy-clipboard` signal. The * default implementation copies the selection, if one exists. - * @paste_clipboard: Class handler for the #GtkText::paste-clipboard signal. + * @paste_clipboard: Class handler for the `GtkText::paste-clipboard` signal. * The default implementation pastes at the current cursor position or over * the current selection if one exists. - * @toggle_overwrite: Class handler for the #GtkText::toggle-overwrite signal. + * @toggle_overwrite: Class handler for the `GtkText::toggle-overwrite` signal. * The default implementation toggles overwrite mode and blinks the cursor. - * @insert_emoji: Class handler for the #GtkText::insert-emoji signal. + * @insert_emoji: Class handler for the `GtkText::insert-emoji` signal. * - * Class structure for #GtkText. All virtual functions have a default + * Class structure for `GtkText`. All virtual functions have a default * implementation. Derived classes may set the virtual function pointers for the * signal handlers to %NULL, but must keep @get_text_area_size and * @get_frame_size non-%NULL; either use the default implementation, or provide |