summaryrefslogtreecommitdiff
path: root/gtk/color_dlg.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-05-22 07:29:40 +0000
committerGuy Harris <guy@alum.mit.edu>2006-05-22 07:29:40 +0000
commit92552c2d765dcf89883392fcd11556d54f2843e5 (patch)
treebb7476c5cd4845fce70a943d87cab8ddb12fe41d /gtk/color_dlg.c
parent4c4664721edb7f9f7b9886a881d913e4dff2043a (diff)
downloadwireshark-92552c2d765dcf89883392fcd11556d54f2843e5.tar.gz
Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUI
strings, and function names. svn path=/trunk/; revision=18205
Diffstat (limited to 'gtk/color_dlg.c')
-rw-r--r--gtk/color_dlg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/color_dlg.c b/gtk/color_dlg.c
index 19887a7db4..fadcb7b4c3 100644
--- a/gtk/color_dlg.c
+++ b/gtk/color_dlg.c
@@ -218,7 +218,7 @@ colorize_dialog_new (char *filter)
/* Resizing of the dialog window is now reasonably done.
* Default size is set so that it should fit into every usual screen resolution.
* All other widgets are always packed depending on the current window size. */
- color_win = dlg_window_new ("Ethereal: Coloring Rules");
+ color_win = dlg_window_new ("Wireshark: Coloring Rules");
OBJECT_SET_DATA(color_win, "color_win", color_win);
gtk_window_set_default_size(GTK_WINDOW(color_win), DEF_WIDTH, DEF_HEIGHT * 2/3);
dlg_vbox = gtk_vbox_new (FALSE, 0);
@@ -1189,7 +1189,7 @@ edit_color_filter_dialog(GtkWidget *color_filters,
tooltips = gtk_tooltips_new ();
/* dialog window */
- edit_dialog = dlg_window_new ("Ethereal: Edit Color Filter");
+ edit_dialog = dlg_window_new ("Wireshark: Edit Color Filter");
gtk_window_set_default_size(GTK_WINDOW(edit_dialog), 500, -1);
OBJECT_SET_DATA(edit_dialog, "edit_dialog", edit_dialog);
colorf->edit_dialog = edit_dialog;
@@ -1499,11 +1499,11 @@ color_sel_win_new(color_filter_t *colorf, gboolean is_bg)
if (is_bg) {
color = &colorf->bg_color;
- title = g_strdup_printf("Ethereal: Choose background color for \"%s\"",
+ title = g_strdup_printf("Wireshark: Choose background color for \"%s\"",
colorf->filter_name);
} else {
color = &colorf->fg_color;
- title = g_strdup_printf("Ethereal: Choose foreground color for \"%s\"",
+ title = g_strdup_printf("Wireshark: Choose foreground color for \"%s\"",
colorf->filter_name);
}
color_sel_win = gtk_color_selection_dialog_new(title);