aboutsummaryrefslogtreecommitdiff
path: root/src/compose.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-24 08:36:17 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-24 08:36:17 +0000
commit1e2e2b3010c8474ef0b5d93b7c20af5eead5c31d (patch)
treebb680a4fab821603589789104dc5f5312e065429 /src/compose.c
parentd9c5a208f028e82c9eda423d0efad7578101aa89 (diff)
use GTK stock button for button set.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@36 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/compose.c')
-rw-r--r--src/compose.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compose.c b/src/compose.c
index 668891eb..495f10c6 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -2521,7 +2521,7 @@ static gboolean compose_check_entries(Compose *compose)
aval = alertpanel(_("Send"),
_("Subject is empty. Send it anyway?"),
- _("Yes"), _("No"), NULL);
+ GTK_STOCK_YES, GTK_STOCK_NO, NULL);
if (aval != G_ALERTDEFAULT)
return FALSE;
}
@@ -5533,7 +5533,7 @@ static void compose_close_cb(gpointer data, guint action, GtkWidget *widget)
if (compose->modified) {
val = alertpanel(_("Discard message"),
_("This message has been modified. discard it?"),
- _("Discard"), _("to Draft"), _("Cancel"));
+ _("Discard"), _("to Draft"), GTK_STOCK_CANCEL);
switch (val) {
case G_ALERTDEFAULT:
@@ -5569,7 +5569,7 @@ static void compose_template_activate_cb(GtkWidget *widget, gpointer data)
msg = g_strdup_printf(_("Do you want to apply the template `%s' ?"),
tmpl->name);
val = alertpanel(_("Apply template"), msg,
- _("Replace"), _("Insert"), _("Cancel"));
+ _("Replace"), _("Insert"), GTK_STOCK_CANCEL);
g_free(msg);
if (val == G_ALERTDEFAULT)