aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/nameres_prefs.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-20 20:05:18 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-20 20:05:18 +0000
commitb041d69838e023a82b0673b2b95c1fc92e647b52 (patch)
tree7f2d96a8b7b1f8095f1bcf9ad6ee3b6201af67ec /gtk/nameres_prefs.c
parentab0699913e23788e0f91f3fe95139e4041fe6609 (diff)
Make the blurbs for protocol preference items into tooltips. (This also
lets us add tooltips to other preference items whose widgets are created with the "create_preference_XXX()" routines - just pass in a tooltip text string rather than a null pointer.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4577 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/nameres_prefs.c')
-rw-r--r--gtk/nameres_prefs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/nameres_prefs.c b/gtk/nameres_prefs.c
index bd2c22e8fd..08d10587fd 100644
--- a/gtk/nameres_prefs.c
+++ b/gtk/nameres_prefs.c
@@ -1,7 +1,7 @@
/* nameres_prefs.c
* Dialog box for name resolution preferences
*
- * $Id: nameres_prefs.c,v 1.1 2002/01/13 20:35:12 guy Exp $
+ * $Id: nameres_prefs.c,v 1.2 2002/01/20 20:05:18 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -73,19 +73,19 @@ nameres_prefs_show(void)
/* Resolve MAC addresses */
m_resolv_cb = create_preference_check_button(main_tb, 0,
- "Enable MAC name resolution:",
+ "Enable MAC name resolution:", NULL,
prefs.name_resolve & RESOLV_MAC);
gtk_object_set_data(GTK_OBJECT(main_vb), M_RESOLVE_KEY, m_resolv_cb);
/* Resolve network addresses */
n_resolv_cb = create_preference_check_button(main_tb, 1,
- "Enable network name resolution:",
+ "Enable network name resolution:", NULL,
prefs.name_resolve & RESOLV_NETWORK);
gtk_object_set_data(GTK_OBJECT(main_vb), N_RESOLVE_KEY, n_resolv_cb);
/* Resolve transport addresses */
t_resolv_cb = create_preference_check_button(main_tb, 2,
- "Enable transport name resolution:",
+ "Enable transport name resolution:", NULL,
prefs.name_resolve & RESOLV_TRANSPORT);
gtk_object_set_data(GTK_OBJECT(main_vb), T_RESOLVE_KEY, t_resolv_cb);