aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_summary_column.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-24 04:29:39 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-24 04:29:39 +0000
commit77c82551f9d41bc5ec59cd75ea52ce3e34945b52 (patch)
tree4b8f2f308655de1556b5eecec0e732840dd29579 /src/prefs_summary_column.c
parent90999c9a9932fe8d8f1bed21d7799db84f310076 (diff)
use GTK stock button for button set.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@31 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs_summary_column.c')
-rw-r--r--src/prefs_summary_column.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/prefs_summary_column.c b/src/prefs_summary_column.c
index 8fdf6be8..169532ee 100644
--- a/src/prefs_summary_column.c
+++ b/src/prefs_summary_column.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2001 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2005 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -303,8 +303,9 @@ static void prefs_summary_column_create(void)
g_signal_connect(G_OBJECT(default_btn), "clicked",
G_CALLBACK(prefs_summary_column_set_to_default), NULL);
- gtkut_button_set_create(&confirm_area, &ok_btn, _("OK"),
- &cancel_btn, _("Cancel"), NULL, NULL);
+ gtkut_stock_button_set_create(&confirm_area, &ok_btn, GTK_STOCK_OK,
+ &cancel_btn, GTK_STOCK_CANCEL,
+ NULL, NULL);
gtk_widget_show(confirm_area);
gtk_box_pack_end(GTK_BOX(btn_hbox), confirm_area, FALSE, FALSE, 0);
gtk_widget_grab_default(ok_btn);