[evolution-patches] e-util HIG patch
- From: William Jon McCann <mccannwj pha jhu edu>
- To: evolution-patches lists ximian com
- Subject: [evolution-patches] e-util HIG patch
- Date: Wed, 07 Jan 2004 14:46:04 -0500
Index: e-util/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/e-util/ChangeLog,v
retrieving revision 1.428
diff -u -r1.428 ChangeLog
--- e-util/ChangeLog 5 Jan 2004 10:58:53 -0000 1.428
+++ e-util/ChangeLog 7 Jan 2004 18:45:28 -0000
@@ -1,3 +1,10 @@
+2003-01-07 William Jon McCann <mccann jhu edu>
+
+ * e-dialog-utils.c (e_notice, e_notice_with_xid, save_ok):
+ * e-request.c (e_request_string):
+ * e-passwords.c (e_passwords_ask_password):
+ Remove separator from dialogs per HIG.
+
2004-01-05 Not Zed <NotZed Ximian com>
* e-memory.c (e_mempool_destroy): Fix from Zan Lynx
Index: e-util/e-dialog-utils.c
===================================================================
RCS file: /cvs/gnome/evolution/e-util/e-dialog-utils.c,v
retrieving revision 1.17
diff -u -r1.17 e-dialog-utils.c
--- e-util/e-dialog-utils.c 25 Mar 2003 16:28:33 -0000 1.17
+++ e-util/e-dialog-utils.c 7 Jan 2004 18:45:28 -0000
@@ -59,6 +59,7 @@
GTK_BUTTONS_OK,
"%s",
str);
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
va_end (args);
g_free (str);
@@ -93,6 +94,7 @@
GTK_BUTTONS_OK,
"%s",
str);
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
va_end (args);
g_free (str);
@@ -247,6 +249,7 @@
_("A file by that name already exists.\n"
"Overwrite it?"));
gtk_window_set_title (GTK_WINDOW (dlg), _("Overwrite file?"));
+ gtk_dialog_set_has_separator (GTK_DIALOG (dlg), FALSE);
btn = gtk_dialog_run (GTK_DIALOG (dlg));
gtk_widget_destroy (dlg);
Index: e-util/e-passwords.c
===================================================================
RCS file: /cvs/gnome/evolution/e-util/e-passwords.c,v
retrieving revision 1.17
diff -u -r1.17 e-passwords.c
--- e-util/e-passwords.c 6 Apr 2003 00:18:09 -0000 1.17
+++ e-util/e-passwords.c 7 Jan 2004 18:45:29 -0000
@@ -334,6 +334,7 @@
gtk_window_set_title (GTK_WINDOW (dialog), title);
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
/* Password entry */
Index: e-util/e-request.c
===================================================================
RCS file: /cvs/gnome/evolution/e-util/e-request.c,v
retrieving revision 1.12
diff -u -r1.12 e-request.c
--- e-util/e-request.c 5 May 2003 00:56:34 -0000 1.12
+++ e-util/e-request.c 7 Jan 2004 18:45:30 -0000
@@ -65,6 +65,7 @@
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OK, GTK_RESPONSE_OK,
NULL);
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
gtk_window_set_default_size (GTK_WINDOW (dialog), 275, -1);
gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]