aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorWilliam Jon McCann <mccann@jhu.edu>2004-03-10 05:10:42 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-03-10 05:10:42 +0800
commit7b75fa6e7df3724b7649bf6d0c42c0aaed9e5029 (patch)
tree10be6b8cdc9e66763b3de78895256d530b80df92 /e-util
parent01423acde3b03a0c5f7cd735a82c6034ab9eed45 (diff)
downloadgsoc2013-evolution-7b75fa6e7df3724b7649bf6d0c42c0aaed9e5029.tar
gsoc2013-evolution-7b75fa6e7df3724b7649bf6d0c42c0aaed9e5029.tar.gz
gsoc2013-evolution-7b75fa6e7df3724b7649bf6d0c42c0aaed9e5029.tar.bz2
gsoc2013-evolution-7b75fa6e7df3724b7649bf6d0c42c0aaed9e5029.tar.lz
gsoc2013-evolution-7b75fa6e7df3724b7649bf6d0c42c0aaed9e5029.tar.xz
gsoc2013-evolution-7b75fa6e7df3724b7649bf6d0c42c0aaed9e5029.tar.zst
gsoc2013-evolution-7b75fa6e7df3724b7649bf6d0c42c0aaed9e5029.zip
Remove separator from dialogs per HIG.
2004-03-04 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. svn path=/trunk/; revision=25003
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog7
-rw-r--r--e-util/e-dialog-utils.c3
-rw-r--r--e-util/e-passwords.c1
-rw-r--r--e-util/e-request.c1
4 files changed, 12 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index ec28f9bb8c..f432d78b5a 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,10 @@
+2004-03-04 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-03-04 Not Zed <NotZed@Ximian.com>
* e-sexp.c: Added some debug stuff.
diff --git a/e-util/e-dialog-utils.c b/e-util/e-dialog-utils.c
index a37519297e..973c170b3f 100644
--- a/e-util/e-dialog-utils.c
+++ b/e-util/e-dialog-utils.c
@@ -59,6 +59,7 @@ e_notice (gpointer parent, GtkMessageType type, const char *format, ...)
GTK_BUTTONS_OK,
"%s",
str);
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
va_end (args);
g_free (str);
@@ -93,6 +94,7 @@ e_notice_with_xid (GdkNativeWindow parent, GtkMessageType type, const char *form
GTK_BUTTONS_OK,
"%s",
str);
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
va_end (args);
g_free (str);
@@ -247,6 +249,7 @@ save_ok (GtkWidget *widget, gpointer data)
_("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);
diff --git a/e-util/e-passwords.c b/e-util/e-passwords.c
index 5405e76245..11a69a3276 100644
--- a/e-util/e-passwords.c
+++ b/e-util/e-passwords.c
@@ -334,6 +334,7 @@ e_passwords_ask_password (const char *title, const char *component_name,
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 */
diff --git a/e-util/e-request.c b/e-util/e-request.c
index 65c6a8e84b..7c47d36d9b 100644
--- a/e-util/e-request.c
+++ b/e-util/e-request.c
@@ -65,6 +65,7 @@ e_request_string (GtkWindow *parent,
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);