aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/main_welcome.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-04-17 03:06:22 +0000
committerGuy Harris <guy@alum.mit.edu>2008-04-17 03:06:22 +0000
commitcc1da67ca7134f4ab3d20b3db6a96eab434d3576 (patch)
tree3a114f817fca03f1f71cb6db93a13b93faf685da /gtk/main_welcome.c
parent22ae89d766e52aab6e4c7b6eea3aa1ba5ca39faa (diff)
A GtkImage doesn't take any input, so it doesn't support the "clicked"
signal. Fix the description for the "Interface List" welcome button. svn path=/trunk/; revision=25091
Diffstat (limited to 'gtk/main_welcome.c')
-rw-r--r--gtk/main_welcome.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk/main_welcome.c b/gtk/main_welcome.c
index 4b088ec97c..a95624377a 100644
--- a/gtk/main_welcome.c
+++ b/gtk/main_welcome.c
@@ -6,7 +6,6 @@
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
- *
* 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 the Free Software Foundation; either version 2
@@ -125,7 +124,6 @@ welcome_button(const gchar *stock_item, const gchar * title, const gchar * subti
/* icon */
w = gtk_image_new_from_stock(stock_item, GTK_ICON_SIZE_LARGE_TOOLBAR);
gtk_box_pack_start(GTK_BOX(item_hb), w, FALSE, FALSE, 5);
- g_signal_connect(w, "clicked", G_CALLBACK(callback), callback_data);
text_vb = gtk_vbox_new(FALSE, 3);
@@ -557,7 +555,7 @@ welcome_new(void)
#ifdef HAVE_LIBPCAP
item_hb = welcome_button(WIRESHARK_STOCK_CAPTURE_INTERFACES,
"Interface List",
- "Life list of the capture interfaces (counts incoming packets)",
+ "Live list of the capture interfaces (counts incoming packets)",
GTK_SIGNAL_FUNC(capture_if_cb), NULL);
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);