diff options
author | Owen Taylor <otaylor@redhat.com> | 2004-02-12 23:06:30 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2004-02-12 23:06:30 +0000 |
commit | 0c4c9f0d1c482740670368466a3aedabec833169 (patch) | |
tree | 4ab72a22178a27084146bc26539a9126d1eca851 | |
parent | 7b1d024a0e92aea4d587d38a170d6fe9715dd69f (diff) | |
download | gtk+-0c4c9f0d1c482740670368466a3aedabec833169.tar.gz |
Remove an extraneous + 1 (#134015, Torsten Schoenfeld)
Thu Feb 12 17:59:52 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtkicontheme.c (gtk_icon_theme_get_search_path):
Remove an extraneous + 1 (#134015, Torsten Schoenfeld)
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | gtk/gtkicontheme.c | 2 |
6 files changed, 26 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Thu Feb 12 17:59:52 2004 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkicontheme.c (gtk_icon_theme_get_search_path): + Remove an extraneous + 1 (#134015, Torsten Schoenfeld) + Thu Feb 12 23:55:08 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtktooltips.h: diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 83a81acaad..a2f84e98a0 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Thu Feb 12 17:59:52 2004 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkicontheme.c (gtk_icon_theme_get_search_path): + Remove an extraneous + 1 (#134015, Torsten Schoenfeld) + Thu Feb 12 23:55:08 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtktooltips.h: diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 83a81acaad..a2f84e98a0 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Thu Feb 12 17:59:52 2004 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkicontheme.c (gtk_icon_theme_get_search_path): + Remove an extraneous + 1 (#134015, Torsten Schoenfeld) + Thu Feb 12 23:55:08 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtktooltips.h: diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 83a81acaad..a2f84e98a0 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Thu Feb 12 17:59:52 2004 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkicontheme.c (gtk_icon_theme_get_search_path): + Remove an extraneous + 1 (#134015, Torsten Schoenfeld) + Thu Feb 12 23:55:08 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtktooltips.h: diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 83a81acaad..a2f84e98a0 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Thu Feb 12 17:59:52 2004 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkicontheme.c (gtk_icon_theme_get_search_path): + Remove an extraneous + 1 (#134015, Torsten Schoenfeld) + Thu Feb 12 23:55:08 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtktooltips.h: diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index 4af3e7ae1a..36ff1440cd 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -689,7 +689,7 @@ gtk_icon_theme_get_search_path (GtkIconTheme *icon_theme, { *path = g_new (gchar *, priv->search_path_len + 1); for (i = 0; i < priv->search_path_len; i++) - (*path)[i] = g_strdup (priv->search_path[i] + 1); + (*path)[i] = g_strdup (priv->search_path[i]); (*path)[i] = NULL; } } |