diff options
author | Murray Cumming <murrayc@murrayc.com> | 2006-05-04 12:17:12 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@src.gnome.org> | 2006-05-04 12:17:12 +0000 |
commit | 47331cd0233944b94bd822e404253111c0af527b (patch) | |
tree | 0f8c0b0c8f1402f45e3b64713782ec25998c9a3e /gtk/gtktreemodel.c | |
parent | ad69ea43d63b6cb14a2ca35c0e0f192d5dc5eae9 (diff) | |
download | gtk+-47331cd0233944b94bd822e404253111c0af527b.tar.gz |
Changed the language of the signals documentation slightly. Bug #340205.
2006-05-04 Murray Cumming <murrayc@murrayc.com>
* gtk/gtktreemodel.c: (gtk_tree_model_base_init): Changed the
language of the signals documentation slightly. Bug #340205.
Diffstat (limited to 'gtk/gtktreemodel.c')
-rw-r--r-- | gtk/gtktreemodel.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtktreemodel.c b/gtk/gtktreemodel.c index f3ba02b27d..15b547bf01 100644 --- a/gtk/gtktreemodel.c +++ b/gtk/gtktreemodel.c @@ -152,7 +152,7 @@ gtk_tree_model_base_init (gpointer g_class) * @path: a #GtkTreePath identifying the changed row * @iter: a valid #GtkTreeIter pointing to the changed row * - * Gets emitted when a row in the model has changed. + * This signal is emitted when a row in the model has changed. */ tree_model_signals[ROW_CHANGED] = g_signal_new (I_("row_changed"), @@ -184,7 +184,7 @@ gtk_tree_model_base_init (gpointer g_class) * @path: a #GtkTreePath identifying the new row * @iter: a valid #GtkTreeIter pointing to the new row * - * Gets emitted when a new row has been inserted in the model. + * This signal is emitted when a new row has been inserted in the model. * * Note that the row may still be empty at this point, since * it is a common pattern to first insert an empty row, and @@ -208,7 +208,7 @@ gtk_tree_model_base_init (gpointer g_class) * @path: a #GtkTreePath identifying the row * @iter: a valid #GtkTreeIter pointing to the row * - * Gets emitted when a row has gotten the first child row or lost + * This signal is emitted when a row has gotten the first child row or lost * its last child row. */ tree_model_signals[ROW_HAS_CHILD_TOGGLED] = @@ -227,7 +227,7 @@ gtk_tree_model_base_init (gpointer g_class) * @tree_model: the #GtkTreeModel on which the signal is emitted * @path: a #GtkTreePath identifying the row * - * Gets emitted when a row has been deleted. + * This signal is emitted when a row has been deleted. * * Note that no iterator is passed to the signal handler, * since the row is already deleted. @@ -251,7 +251,7 @@ gtk_tree_model_base_init (gpointer g_class) * have been reordered * @iter: a valid #GtkTreeIter pointing to the node whose * - * Gets emitted when the children of a node in the #GtkTreeModel + * This signal is emitted when the children of a node in the #GtkTreeModel * have been reordered. * * Note that this signal is <emphasis>not</emphasis> emitted |