diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-29 07:26:59 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-29 07:26:59 +0800 |
commit | ddbb5d882b691588573c60c5c41aa4cd33a25b76 (patch) | |
tree | 4fd54ba47f8f910b429f0e76090e504242d8f560 /widgets/shortcut-bar/e-shortcut-bar.c | |
parent | c540870b0c5653363a06cf17fab33b7ffff49e78 (diff) | |
download | gsoc2013-evolution-ddbb5d882b691588573c60c5c41aa4cd33a25b76.tar gsoc2013-evolution-ddbb5d882b691588573c60c5c41aa4cd33a25b76.tar.gz gsoc2013-evolution-ddbb5d882b691588573c60c5c41aa4cd33a25b76.tar.bz2 gsoc2013-evolution-ddbb5d882b691588573c60c5c41aa4cd33a25b76.tar.lz gsoc2013-evolution-ddbb5d882b691588573c60c5c41aa4cd33a25b76.tar.xz gsoc2013-evolution-ddbb5d882b691588573c60c5c41aa4cd33a25b76.tar.zst gsoc2013-evolution-ddbb5d882b691588573c60c5c41aa4cd33a25b76.zip |
Fix a stupid crash in ::destroy that was my fault.
svn path=/trunk/; revision=5624
Diffstat (limited to 'widgets/shortcut-bar/e-shortcut-bar.c')
-rw-r--r-- | widgets/shortcut-bar/e-shortcut-bar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/shortcut-bar/e-shortcut-bar.c b/widgets/shortcut-bar/e-shortcut-bar.c index 846e9e727f..2c15d499d2 100644 --- a/widgets/shortcut-bar/e-shortcut-bar.c +++ b/widgets/shortcut-bar/e-shortcut-bar.c @@ -244,10 +244,10 @@ e_shortcut_bar_destroy (GtkObject *object) shortcut_bar = E_SHORTCUT_BAR (object); - g_array_free (shortcut_bar->groups, TRUE); - e_shortcut_bar_disconnect_model (shortcut_bar); + g_array_free (shortcut_bar->groups, TRUE); + g_free (shortcut_bar->dragged_url); g_free (shortcut_bar->dragged_name); |