diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-25 13:55:59 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-25 13:55:59 +0800 |
commit | bb241192eb773d7f0d178306dd55f9ca8e31c1f0 (patch) | |
tree | 4201777027364eeea243b2f625bb373bca30ef6d /widgets/shortcut-bar | |
parent | e90eea58a2109961faa8632ac5e5783d9970366b (diff) | |
download | gsoc2013-evolution-bb241192eb773d7f0d178306dd55f9ca8e31c1f0.tar.gz gsoc2013-evolution-bb241192eb773d7f0d178306dd55f9ca8e31c1f0.tar.zst gsoc2013-evolution-bb241192eb773d7f0d178306dd55f9ca8e31c1f0.zip |
Reorganized the shell to allow dynamic registration of storages and
folder types, and changed all the components to work with the new
setup.
svn path=/trunk/; revision=3199
Diffstat (limited to 'widgets/shortcut-bar')
-rw-r--r-- | widgets/shortcut-bar/ChangeLog | 3 | ||||
-rw-r--r-- | widgets/shortcut-bar/e-shortcut-bar.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/widgets/shortcut-bar/ChangeLog b/widgets/shortcut-bar/ChangeLog index addd76670e..5033b6da94 100644 --- a/widgets/shortcut-bar/ChangeLog +++ b/widgets/shortcut-bar/ChangeLog @@ -1,5 +1,8 @@ 2000-05-25 Ettore Perazzoli <ettore@helixcode.com> + * e-shortcut-bar.c (e_shortcut_bar_load_image): Leak plug: free + pathname returned from `gnome_pixmap_file()'. + * Makefile.am: Add `-I$(top_srcdir)'. 2000-05-24 Christopher James Lahey <clahey@helixcode.com> diff --git a/widgets/shortcut-bar/e-shortcut-bar.c b/widgets/shortcut-bar/e-shortcut-bar.c index bca9d5c61a..d668516338 100644 --- a/widgets/shortcut-bar/e-shortcut-bar.c +++ b/widgets/shortcut-bar/e-shortcut-bar.c @@ -650,5 +650,7 @@ e_shortcut_bar_load_image (const gchar *filename) else g_warning ("Couldn't find pixmap: %s", filename); + g_free (pathname); + return image; } |