[evolution-patches] Patch for some UI issues(revised)



I am resending the patch, for the ui issues, removing mail part and
including suggested changes in the address-book and calendar. However, I
am still not very much clear about the problem in the mail part.

Vivek
Index: calendar/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/calendar/ChangeLog,v
retrieving revision 1.2575
diff -u -p -r1.2575 ChangeLog
--- calendar/ChangeLog	8 Dec 2004 01:58:00 -0000	1.2575
+++ calendar/ChangeLog	10 Dec 2004 05:40:37 -0000
@@ -1,3 +1,8 @@
+2004-12-10  Vivek Jain <jvivek novell com>
+
+	* gui/dialogs/calendar-setup.c : Changed the window title based upon
+	the source.
+
 2004-12-08  David Mosberger <davidm napali hpl hp com>
 
 	* gui/main.c: include plugin headers to fix 64 bit problems.
Index: calendar/gui/dialogs/calendar-setup.c
===================================================================
RCS file: /cvs/gnome/evolution/calendar/gui/dialogs/calendar-setup.c,v
retrieving revision 1.31
diff -u -p -r1.31 calendar-setup.c
--- calendar/gui/dialogs/calendar-setup.c	25 Nov 2004 14:51:18 -0000	1.31
+++ calendar/gui/dialogs/calendar-setup.c	10 Dec 2004 05:40:37 -0000
@@ -371,7 +371,6 @@ calendar_setup_edit_calendar (struct _Gt
 	} else {
 		GConfClient *gconf;
 		GSList *l;
-
 		sdialog->source = e_source_new ("", "");
 		gconf = gconf_client_get_default ();
 		sdialog->source_list = e_source_list_new_for_gconf (gconf, "/apps/evolution/calendar/sources");
@@ -397,8 +396,11 @@ calendar_setup_edit_calendar (struct _Gt
 	target = e_cal_config_target_new_source (ec, sdialog->source);
 	e_config_set_target ((EConfig *) ec, (EConfigTarget *) target);
 
-	sdialog->window = e_config_create_window ((EConfig *)ec, NULL, _("Calendar Properties"));
-
+	if (source)
+		sdialog->window = e_config_create_window ((EConfig *)ec, NULL, _("Calendar Properties"));
+	else
+		sdialog->window = e_config_create_window ((EConfig *)ec, NULL, _("New Calendar"));
+		
 	/* forces initial validation */
 	if (!sdialog->original_source)
 		e_config_target_changed ((EConfig *)ec, E_CONFIG_TARGET_CHANGED_STATE);
Index: addressbook/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/ChangeLog,v
retrieving revision 1.1874
diff -u -p -r1.1874 ChangeLog
--- addressbook/ChangeLog	6 Dec 2004 04:25:53 -0000	1.1874
+++ addressbook/ChangeLog	10 Dec 2004 05:40:41 -0000
@@ -1,3 +1,8 @@
+2004-12-10  Vivek Jain <jvivek novell com>
+
+	* gui/component/addressbook-config.c (addressbook_config_edit_source): set the
+	window title base upon the source
+
 2004-12-06  Not Zed  <NotZed Ximian com>
 
 	* gui/component/addressbook-config.c (eabc_general_type): set the
Index: addressbook/gui/component/addressbook-config.c
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/gui/component/addressbook-config.c,v
retrieving revision 1.93
diff -u -p -r1.93 addressbook-config.c
--- addressbook/gui/component/addressbook-config.c	6 Dec 2004 04:25:54 -0000	1.93
+++ addressbook/gui/component/addressbook-config.c	10 Dec 2004 05:40:42 -0000
@@ -1067,7 +1067,11 @@ addressbook_config_edit_source (GtkWidge
 	target = eab_config_target_new_source(ec, sdialog->source);
 	e_config_set_target((EConfig *)ec, (EConfigTarget *)target);
 
-	sdialog->window = e_config_create_window((EConfig *)ec, NULL, _("Address Book Properties"));
+	if(source)
+		sdialog->window = e_config_create_window((EConfig *)ec, NULL, _("Address Book Properties"));
+	else
+		sdialog->window = e_config_create_window((EConfig *)ec, NULL, _("New Address Book"));
+
 
 	/* forces initial validation */
 	if (!sdialog->original_source)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]