diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-01-23 18:01:05 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-01-23 18:01:05 +0000 |
commit | 90999c9a9932fe8d8f1bed21d7799db84f310076 (patch) | |
tree | 79e48eeacd4427fe31f4226e7584f9ed16fb292a /src/compose.c | |
parent | 68457eb396400cc621286817298e3912e08361b1 (diff) |
use GTK stock button for dialog button set.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@30 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/compose.c')
-rw-r--r-- | src/compose.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/compose.c b/src/compose.c index 7520acf9..668891eb 100644 --- a/src/compose.c +++ b/src/compose.c @@ -4826,8 +4826,9 @@ static void compose_attach_property_create(gboolean *cancelled) SET_LABEL_AND_ENTRY(_("Path"), path_entry, 2); SET_LABEL_AND_ENTRY(_("File name"), filename_entry, 3); - gtkut_button_set_create(&hbbox, &ok_btn, _("OK"), - &cancel_btn, _("Cancel"), NULL, NULL); + gtkut_stock_button_set_create(&hbbox, &ok_btn, GTK_STOCK_OK, + &cancel_btn, GTK_STOCK_CANCEL, + NULL, NULL); gtk_box_pack_end(GTK_BOX(vbox), hbbox, FALSE, FALSE, 0); gtk_widget_grab_default(ok_btn); |