aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/prefs_dlg.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2003-09-01 01:49:20 +0000
committerGerald Combs <gerald@wireshark.org>2003-09-01 01:49:20 +0000
commitd87e75c5859bb4f56e11e870c62172a3ffb9887c (patch)
tree9b763c8de33250556622f64b1a3deaa448ea7986 /gtk/prefs_dlg.c
parent9f62e50a7d29a9f24ab153bc845c6c50b19cf97f (diff)
Make the capitalization of the "Name Resolution" frame consistent with the
other frames. svn path=/trunk/; revision=8327
Diffstat (limited to 'gtk/prefs_dlg.c')
-rw-r--r--gtk/prefs_dlg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/prefs_dlg.c b/gtk/prefs_dlg.c
index 587db48ac8..07f0f4a4da 100644
--- a/gtk/prefs_dlg.c
+++ b/gtk/prefs_dlg.c
@@ -1,7 +1,7 @@
/* prefs_dlg.c
* Routines for handling preferences
*
- * $Id: prefs_dlg.c,v 1.59 2003/03/11 23:14:42 guy Exp $
+ * $Id: prefs_dlg.c,v 1.60 2003/09/01 01:49:20 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -512,13 +512,13 @@ prefs_cb(GtkWidget *w _U_, gpointer dummy _U_)
#endif /* HAVE_LIBPCAP */
/* Name resolution prefs */
- frame = gtk_frame_new("Name resolution");
+ frame = gtk_frame_new("Name Resolution");
gtk_widget_show(GTK_WIDGET(frame));
nameres_pg = nameres_prefs_show();
gtk_container_add(GTK_CONTAINER(frame), nameres_pg);
OBJECT_SET_DATA(prefs_w, E_NAMERES_PAGE_KEY, nameres_pg);
gtk_notebook_append_page (GTK_NOTEBOOK(prefs_nb), frame, NULL);
- strcpy(label_str, "Name resolution");
+ strcpy(label_str, "Name Resolution");
#if GTK_MAJOR_VERSION < 2
ct_node = gtk_ctree_insert_node(GTK_CTREE(cts.tree), NULL, NULL,
&label_ptr, 5, NULL, NULL, NULL, NULL, TRUE, TRUE);