diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-10-27 04:11:54 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-10-27 04:11:54 +0800 |
commit | d87cdef42b985761672186b11ba583fa871b4ef2 (patch) | |
tree | b2d4c4d91ada22135ef03cba96dd0dc90b16d7e7 | |
parent | e254f96f141f66bd7669426d3a8543047d734bfa (diff) | |
download | gsoc2013-epiphany-d87cdef42b985761672186b11ba583fa871b4ef2.tar.gz gsoc2013-epiphany-d87cdef42b985761672186b11ba583fa871b4ef2.tar.zst gsoc2013-epiphany-d87cdef42b985761672186b11ba583fa871b4ef2.zip |
Make the crash revovery dialogue GTK_MESSAGE_QUESTION instead of _WARNING.
2004-10-26 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-session.c: (offer_to_resume):
Make the crash revovery dialogue GTK_MESSAGE_QUESTION instead of
_WARNING.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-session.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,12 @@ 2004-10-26 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-session.c: (offer_to_resume): + + Make the crash revovery dialogue GTK_MESSAGE_QUESTION instead of + _WARNING. + +2004-10-26 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct): * src/ephy-history-window.c: (confirmation_dialog_response_cb), diff --git a/src/ephy-session.c b/src/ephy-session.c index 42a6b8af5..445d2e891 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -371,7 +371,7 @@ offer_to_resume (EphySession *session) dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, - GTK_MESSAGE_WARNING, + GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE, _("Epiphany appears to have crashed or been killed the last time it was run.")); |