diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-11 01:40:28 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-11 01:40:28 +0800 |
commit | 52ce2079e3299a9f55f19154fa954ab82bf8dfd3 (patch) | |
tree | f42ed2c9829e7783be196a63e1cc531d88637443 /shell/e-shortcuts-view.c | |
parent | b71068d4e3c600668cbb7a6e282be4b21a1d700b (diff) | |
download | gsoc2013-evolution-52ce2079e3299a9f55f19154fa954ab82bf8dfd3.tar.gz gsoc2013-evolution-52ce2079e3299a9f55f19154fa954ab82bf8dfd3.tar.zst gsoc2013-evolution-52ce2079e3299a9f55f19154fa954ab82bf8dfd3.zip |
Set defaults for /apps/evolution/shell/default_folders/... .
* apps_evolution_shell.schemas: Set defaults for
/apps/evolution/shell/default_folders/... .
* e-shortcuts-view.c (pop_up_right_click_menu_for_group): Destroy
the popup_menu with gtk_widget_destroy() instead of
gtk_widget_unref().
svn path=/trunk/; revision=19403
Diffstat (limited to 'shell/e-shortcuts-view.c')
-rw-r--r-- | shell/e-shortcuts-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c index 2c77f62e95..aa46fcfb64 100644 --- a/shell/e-shortcuts-view.c +++ b/shell/e-shortcuts-view.c @@ -307,7 +307,7 @@ pop_up_right_click_menu_for_group (EShortcutsView *shortcuts_view, gnome_popup_menu_do_popup_modal (popup_menu, NULL, NULL, event, menu_data, GTK_WIDGET (shortcuts_view)); g_free (menu_data); - gtk_widget_unref (popup_menu); + gtk_widget_destroy (popup_menu); } |