forked from AuroraMiddleware/gtk
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)
This commit is contained in:
parent
7b1d024a0e
commit
0c4c9f0d1c
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user