diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2009-12-08 01:51:44 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2009-12-08 01:51:44 +0000 |
commit | 3b8b01d72b34c4dc549e48976a45c6ae8e8a0835 (patch) | |
tree | 8a86c0109914ba863aa6df2df8b3a84ca3c32015 | |
parent | 92b77bcf361e3d7217aff78ecf9927fae271b7e9 (diff) |
modified button order of dialog on closing compose window on win32.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2365 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/compose.c | 5 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2009-12-08 + + * src/compose.c: compose_close_cb(): modified button order on win32. + 2009-12-04 * src/summaryview.c: summary_filter_real(): disable sort while diff --git a/src/compose.c b/src/compose.c index c24729d7..af13ed2b 100644 --- a/src/compose.c +++ b/src/compose.c @@ -7067,8 +7067,13 @@ static void compose_close_cb(gpointer data, guint action, GtkWidget *widget) if (compose->modified) { val = alertpanel(_("Save message"), _("This message has been modified. Save it to draft folder?"), +#ifdef G_OS_WIN32 + GTK_STOCK_SAVE, _("Close _without saving"), + GTK_STOCK_CANCEL); +#else GTK_STOCK_SAVE, GTK_STOCK_CANCEL, _("Close _without saving")); +#endif switch (val) { case G_ALERTDEFAULT: |