diff options
author | William Jon McCann <jmccann@redhat.com> | 2012-08-26 22:52:08 +0800 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2012-08-26 22:54:55 +0800 |
commit | b3a65248f5747e0d9fbb480d011318d13ddb099b (patch) | |
tree | a84625499654be31bb5d93e33321d447cea91897 /gtk | |
parent | 45cc254431bd6a448bd8e2d6d7cfe60ba9b71dd3 (diff) | |
download | gtk+-b3a65248f5747e0d9fbb480d011318d13ddb099b.tar.gz |
Fix a typo in the the comments
https://bugzilla.gnome.org/show_bug.cgi?id=682724
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/deprecated/gtktable.c | 2 | ||||
-rw-r--r-- | gtk/gtkbuildable.c | 2 | ||||
-rw-r--r-- | gtk/gtkcellarea.c | 2 | ||||
-rw-r--r-- | gtk/gtkeditable.c | 6 | ||||
-rw-r--r-- | gtk/gtkiconview.c | 2 | ||||
-rw-r--r-- | gtk/gtkimcontextsimple.c | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/gtk/deprecated/gtktable.c b/gtk/deprecated/gtktable.c index d69c326826..986c687e9d 100644 --- a/gtk/deprecated/gtktable.c +++ b/gtk/deprecated/gtktable.c @@ -599,7 +599,7 @@ gtk_table_init (GtkTable *table) * must both be in the range 1 .. 65535. For historical reasons, 0 is accepted * as well and is silently interpreted as 1. * - * Returns: A pointer to the the newly created table widget. + * Returns: A pointer to the newly created table widget. * * Deprecated: 3.4: Use gtk_grid_new(). */ diff --git a/gtk/gtkbuildable.c b/gtk/gtkbuildable.c index 8fdb58024c..47cd426a41 100644 --- a/gtk/gtkbuildable.c +++ b/gtk/gtkbuildable.c @@ -84,7 +84,7 @@ gtk_buildable_set_name (GtkBuildable *buildable, * * Gets the name of the @buildable object. * - * #GtkBuilder sets the name based on the the + * #GtkBuilder sets the name based on the * <link linkend="BUILDER-UI">GtkBuilder UI definition</link> * used to construct the @buildable. * diff --git a/gtk/gtkcellarea.c b/gtk/gtkcellarea.c index eb651b87ab..c9d6a7a333 100644 --- a/gtk/gtkcellarea.c +++ b/gtk/gtkcellarea.c @@ -183,7 +183,7 @@ * call to #GtkWidgetClass.get_preferred_height_for_width(). Returning * a perfect height for width that is larger than the screen area is * inconsequential since after the layouting receives an allocation - * from a scrolled window it simply continues to drive the the scrollbar + * from a scrolled window it simply continues to drive the scrollbar * values while more and more height is required for the row heights * that are calculated in the background. * </para> diff --git a/gtk/gtkeditable.c b/gtk/gtkeditable.c index 616d234464..43dfd45564 100644 --- a/gtk/gtkeditable.c +++ b/gtk/gtkeditable.c @@ -222,7 +222,7 @@ gtk_editable_insert_text (GtkEditable *editable, * * Deletes a sequence of characters. The characters that are deleted are * those characters at positions from @start_pos up to, but not including - * @end_pos. If @end_pos is negative, then the the characters deleted + * @end_pos. If @end_pos is negative, then the characters deleted * are those from @start_pos to the end of the text. * * Note that the positions are specified in characters, not bytes. @@ -247,7 +247,7 @@ gtk_editable_delete_text (GtkEditable *editable, * * Retrieves a sequence of characters. The characters that are retrieved * are those characters at positions from @start_pos up to, but not - * including @end_pos. If @end_pos is negative, then the the characters + * including @end_pos. If @end_pos is negative, then the characters * retrieved are those characters from @start_pos to the end of the text. * * Note that positions are specified in characters, not bytes. @@ -367,7 +367,7 @@ gtk_editable_delete_selection (GtkEditable *editable) * * Selects a region of text. The characters that are selected are * those characters at positions from @start_pos up to, but not - * including @end_pos. If @end_pos is negative, then the the + * including @end_pos. If @end_pos is negative, then the * characters selected are those characters from @start_pos to * the end of the text. * diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c index 8740f46836..a1df572e1e 100644 --- a/gtk/gtkiconview.c +++ b/gtk/gtkiconview.c @@ -2259,7 +2259,7 @@ gtk_icon_view_button_press (GtkWidget *widget, &cell); /* - * We consider only the the cells' area as the item area if the + * We consider only the cells' area as the item area if the * item is not selected, but if it *is* selected, the complete * selection rectangle is considered to be part of the item. */ diff --git a/gtk/gtkimcontextsimple.c b/gtk/gtkimcontextsimple.c index e426c6b818..ae88ef4d0c 100644 --- a/gtk/gtkimcontextsimple.c +++ b/gtk/gtkimcontextsimple.c @@ -494,7 +494,7 @@ check_compact_table (GtkIMContextSimple *context_simple, } /* This function receives a sequence of Unicode characters and tries to - * normalize it (NFC). We check for the case the the resulting string + * normalize it (NFC). We check for the case where the resulting string * has length 1 (single character). * NFC normalisation normally rearranges diacritic marks, unless these * belong to the same Canonical Combining Class. |