aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/font_utils.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-05-28 17:19:08 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-05-28 17:19:08 +0000
commit397150923ff1ba7bdb8dafbe5f26397d00b08cb8 (patch)
tree0e8ff097e52b1898c1009e580c0ec2d2c63c526e /gtk/font_utils.c
parent44c0a87212600a52b57c97bbec2653a32d1db2d5 (diff)
Ethereal->Wireshark
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18232 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/font_utils.c')
-rw-r--r--gtk/font_utils.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/font_utils.c b/gtk/font_utils.c
index 0e0e55a3d9..c2cd10b4a5 100644
--- a/gtk/font_utils.c
+++ b/gtk/font_utils.c
@@ -734,24 +734,24 @@ void font_init(void)
if (m_r_font == NULL || m_b_font == NULL) {
/* XXX - pop this up as a dialog box? no */
if (m_r_font == NULL) {
- fprintf(stderr, "ethereal: Warning: font %s not found - defaulting to 6x13 and 6x13bold\n",
+ fprintf(stderr, "wireshark: Warning: font %s not found - defaulting to 6x13 and 6x13bold\n",
prefs.gui_font_name1);
} else {
gdk_font_unref(m_r_font);
}
if (m_b_font == NULL) {
- fprintf(stderr, "ethereal: Warning: font %s not found - defaulting to 6x13 and 6x13bold\n",
+ fprintf(stderr, "wireshark: Warning: font %s not found - defaulting to 6x13 and 6x13bold\n",
bold_font_name);
} else {
gdk_font_unref(m_b_font);
}
g_free(bold_font_name);
if ((m_r_font = gdk_font_load("6x13")) == NULL) {
- fprintf(stderr, "ethereal: Error: font 6x13 not found\n");
+ fprintf(stderr, "wireshark: Error: font 6x13 not found\n");
exit(1);
}
if ((m_b_font = gdk_font_load("6x13bold")) == NULL) {
- fprintf(stderr, "ethereal: Error: font 6x13bold not found\n");
+ fprintf(stderr, "wireshark: Error: font 6x13bold not found\n");
exit(1);
}
g_free(prefs.gui_font_name1);
@@ -764,24 +764,24 @@ void font_init(void)
if (m_r_font == NULL || m_b_font == NULL) {
/* XXX - pop this up as a dialog box? no */
if (m_r_font == NULL) {
- fprintf(stderr, "ethereal: Warning: font %s not found - defaulting to Monospace 9\n",
+ fprintf(stderr, "wireshark: Warning: font %s not found - defaulting to Monospace 9\n",
prefs.gui_font_name2);
} else {
pango_font_description_free(m_r_font);
}
if (m_b_font == NULL) {
- fprintf(stderr, "ethereal: Warning: bold font %s not found - defaulting"
+ fprintf(stderr, "wireshark: Warning: bold font %s not found - defaulting"
" to Monospace 9\n", prefs.gui_font_name2);
} else {
pango_font_description_free(m_b_font);
}
if ((m_r_font = pango_font_description_from_string("Monospace 9")) == NULL)
{
- fprintf(stderr, "ethereal: Error: font Monospace 9 not found\n");
+ fprintf(stderr, "wireshark: Error: font Monospace 9 not found\n");
exit(1);
}
if ((m_b_font = pango_font_description_copy(m_r_font)) == NULL) {
- fprintf(stderr, "ethereal: Error: font Monospace 9 bold not found\n");
+ fprintf(stderr, "wireshark: Error: font Monospace 9 bold not found\n");
exit(1);
}
g_free(prefs.gui_font_name2);