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
This commit is contained in:
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user