summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-06-22 01:13:38 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-06-24 22:40:29 +0000
commit6b632ca13953115f38dffe17ed4ca0e80334469f (patch)
treeb6774c49c41b1a8fc53d060a15d988b1b4ed3c48
parenta92ab660241b0de079bc7347512b37ac4a8d1c57 (diff)
downloadgtk+-6b632ca13953115f38dffe17ed4ca0e80334469f.tar.gz
entry: Silence gtk-doc warnings
-rw-r--r--gtk/gtkentry.c2
-rw-r--r--gtk/gtkentry.h28
-rw-r--r--gtk/gtktextprivate.h28
3 files changed, 2 insertions, 56 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index 5757020b9f..fa49667678 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -3594,7 +3594,7 @@ gtk_entry_set_extra_menu (GtkEntry *entry,
/**
* gtk_entry_get_extra_menu:
- * @self: a #GtkText
+ * @entry: a #GtkText
*
* Gets the menu model set with gtk_entry_set_extra_menu().
*
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h
index b71c4d3ac6..3f4a6023b9 100644
--- a/gtk/gtkentry.h
+++ b/gtk/gtkentry.h
@@ -78,33 +78,7 @@ struct _GtkEntry
* GtkEntryClass:
* @parent_class: The parent class.
* @activate: Class handler for the #GtkEntry::activate signal. The default
- * implementation activates the gtk.activate-default action.
- * @move_cursor: Class handler for the #GtkEntry::move-cursor signal. The
- * default implementation specifies the standard #GtkEntry cursor movement
- * behavior.
- * @insert_at_cursor: Class handler for the #GtkEntry::insert-at-cursor signal.
- * The default implementation inserts text at the cursor.
- * @delete_from_cursor: Class handler for the #GtkEntry::delete-from-cursor
- * signal. The default implementation deletes the selection or the specified
- * number of characters or words.
- * @backspace: Class handler for the #GtkEntry::backspace signal. The default
- * implementation deletes the selection or a single character or word.
- * @cut_clipboard: Class handler for the #GtkEntry::cut-clipboard signal. The
- * default implementation cuts the selection, if one exists.
- * @copy_clipboard: Class handler for the #GtkEntry::copy-clipboard signal. The
- * default implementation copies the selection, if one exists.
- * @paste_clipboard: Class handler for the #GtkEntry::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 #GtkEntry::toggle-overwrite signal.
- * The default implementation toggles overwrite mode and blinks the cursor.
- * @insert_emoji: Class handler for the #GtkEntry::insert-emoji signal.
- *
- * Class structure for #GtkEntry. 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
- * a custom one.
+ * implementation activates the default.activate action.
*/
struct _GtkEntryClass
{
diff --git a/gtk/gtktextprivate.h b/gtk/gtktextprivate.h
index 042d068fd1..295eb5bae1 100644
--- a/gtk/gtktextprivate.h
+++ b/gtk/gtktextprivate.h
@@ -34,34 +34,6 @@ typedef struct _GtkTextClass GtkTextClass;
/*<private>
* GtkTextClass:
* @parent_class: The parent class.
- * @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
- * behavior.
- * @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
- * 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
- * implementation deletes the selection or a single character or word.
- * @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
- * default implementation copies the selection, if one exists.
- * @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.
- * The default implementation toggles overwrite mode and blinks the cursor.
- * @insert_emoji: Class handler for the #GtkText::insert-emoji signal.
- *
- * 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
- * a custom one.
*/
struct _GtkTextClass
{