diff options
-rw-r--r-- | shell/ChangeLog | 9 | ||||
-rw-r--r-- | shell/apps_evolution_shell.schemas | 8 | ||||
-rw-r--r-- | shell/e-shortcuts-view.c | 2 |
3 files changed, 14 insertions, 5 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 0f5dd7cf91..9c7b33a70b 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,12 @@ +2003-01-10 Ettore Perazzoli <ettore@ximian.com> + + * 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(). + 2003-01-10 Not Zed <NotZed@Ximian.com> * evolution-config-control.c (impl_apply): remove cast to diff --git a/shell/apps_evolution_shell.schemas b/shell/apps_evolution_shell.schemas index c1b93e0dd7..b51412da27 100644 --- a/shell/apps_evolution_shell.schemas +++ b/shell/apps_evolution_shell.schemas @@ -8,7 +8,7 @@ <applyto>/apps/evolution/shell/default_folders/mail_path</applyto> <owner>evolution</owner> <type>string</type> - <default></default> + <default>evolution:/local/Inbox</default> <locale name="C"> <short>Path to the default mail folder</short> </locale> @@ -32,7 +32,7 @@ <applyto>/apps/evolution/shell/default_folders/contacts_path</applyto> <owner>evolution</owner> <type>string</type> - <default></default> + <default>evolution:/local/Contacts</default> <locale name="C"> <short>Path to the default contacts folder</short> </locale> @@ -56,7 +56,7 @@ <applyto>/apps/evolution/shell/default_folders/calendar_path</applyto> <owner>evolution</owner> <type>string</type> - <default></default> + <default>evolution:/local/Calendar</default> <locale name="C"> <short>Path to the default calendar folder</short> </locale> @@ -80,7 +80,7 @@ <applyto>/apps/evolution/shell/default_folders/tasks_path</applyto> <owner>evolution</owner> <type>string</type> - <default></default> + <default>evolution:/local/Tasks</default> <locale name="C"> <short>Path to the default tasks folder</short> </locale> 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); } |