aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/smb_stat.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-21 03:54:32 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-21 03:54:32 +0000
commitdd48dfa756c15624cc53fbb471d1d87a437ab168 (patch)
tree3f4bdd13b78cad58c80f9ad97a4cea595940f2d9 /gtk/smb_stat.c
parent744e9b2e4f53a55414bef3c024c6cb24bf082db3 (diff)
use stock buttons whereever possible,
added some ethereal specific stock icons git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9763 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/smb_stat.c')
-rw-r--r--gtk/smb_stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/smb_stat.c b/gtk/smb_stat.c
index 70bcaef5c6..b6427fbc1c 100644
--- a/gtk/smb_stat.c
+++ b/gtk/smb_stat.c
@@ -1,7 +1,7 @@
/* smb_stat.c
* smb_stat 2003 Ronnie Sahlberg
*
- * $Id: smb_stat.c,v 1.30 2004/01/13 22:49:15 guy Exp $
+ * $Id: smb_stat.c,v 1.31 2004/01/21 03:54:31 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -292,7 +292,7 @@ gtk_smbstat_cb(GtkWidget *w _U_, gpointer d _U_)
filter_box=gtk_hbox_new(FALSE, 3);
/* Filter button */
- filter_bt = gtk_button_new_with_label("Filter:");
+ filter_bt=BUTTON_NEW_FROM_STOCK(ETHEREAL_STOCK_DISPLAY_FILTER_ENTRY);
SIGNAL_CONNECT(filter_bt, "clicked", display_filter_construct_cb, &args);
gtk_box_pack_start(GTK_BOX(filter_box), filter_bt, FALSE, TRUE, 0);
gtk_widget_show(filter_bt);
@@ -323,7 +323,7 @@ gtk_smbstat_cb(GtkWidget *w _U_, gpointer d _U_)
gtk_widget_show(bbox);
/* the start button */
- start_button=gtk_button_new_with_label("Create Stat");
+ start_button=BUTTON_NEW_FROM_STOCK(ETHEREAL_STOCK_CREATE_STAT);
SIGNAL_CONNECT_OBJECT(start_button, "clicked",
smbstat_start_button_clicked, NULL);
gtk_box_pack_start(GTK_BOX(bbox), start_button, TRUE, TRUE, 0);