summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtktreemodel.c4
-rw-r--r--gtk/gtktreeview.c2
-rw-r--r--gtk/gtkwindow.c25
3 files changed, 28 insertions, 3 deletions
diff --git a/gtk/gtktreemodel.c b/gtk/gtktreemodel.c
index ece4ed2519..cb31422369 100644
--- a/gtk/gtktreemodel.c
+++ b/gtk/gtktreemodel.c
@@ -1714,12 +1714,12 @@ gtk_tree_row_reference_inserted (GObject *proxy,
}
/**
- * gtk_tree_row_reference_inserted:
+ * gtk_tree_row_reference_deleted:
* @proxy: A #GObject
* @path: The path position that was deleted
*
* Lets a set of row reference created by gtk_tree_row_reference_new_proxy()
- * know that the model emitted the "row_inserted" signal.
+ * know that the model emitted the "row_deleted" signal.
**/
void
gtk_tree_row_reference_deleted (GObject *proxy,
diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c
index d935d1c931..23dccf5a3c 100644
--- a/gtk/gtktreeview.c
+++ b/gtk/gtktreeview.c
@@ -9903,7 +9903,7 @@ gtk_tree_view_set_search_column (GtkTreeView *tree_view,
}
/**
- * gtk_tree_view_search_get_search_equal_func:
+ * gtk_tree_view_get_search_equal_func:
* @tree_view: A #GtkTreeView
*
* Returns the compare function currently in use.
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
index c1e006de62..fa8f0264d5 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -1125,6 +1125,14 @@ gtk_window_remove_accel_group (GtkWindow *window,
_gtk_accel_group_detach (accel_group, G_OBJECT (window));
}
+/**
+ * gtk_window_add_mnemonic:
+ * @window: a #GtkWindow
+ * @keyval: the mnemonic
+ * @target: the widget that gets activated by the mnemonic
+ *
+ * Adds a mnemonic to this window.
+ */
void
gtk_window_add_mnemonic (GtkWindow *window,
guint keyval,
@@ -1155,6 +1163,14 @@ gtk_window_add_mnemonic (GtkWindow *window,
gtk_window_notify_keys_changed (window);
}
+/**
+ * gtk_window_remove_mnemonic:
+ * @window: a #GtkWindow
+ * @keyval: the mnemonic
+ * @target: the widget that gets activated by the mnemonic
+ *
+ * Removes a mnemonic from this window.
+ */
void
gtk_window_remove_mnemonic (GtkWindow *window,
guint keyval,
@@ -1181,6 +1197,15 @@ gtk_window_remove_mnemonic (GtkWindow *window,
gtk_window_notify_keys_changed (window);
}
+/**
+ * gtk_window_mnemonic_activate:
+ * @window: a #GtkWindow
+ * @keyval: the mnemonic
+ * @modifier: the modifiers
+ * @returns: %TRUE if the activation is done.
+ *
+ * Activates the targets associated with the mnemonic.
+ */
gboolean
gtk_window_mnemonic_activate (GtkWindow *window,
guint keyval,