diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-07-21 15:56:15 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-07-21 15:56:15 +0000 |
commit | e88d4d3a3029f5c8f8bae73b317d225d3c85845a (patch) | |
tree | 8af9173a63978aa78bc1b6311f0c518fecbc5596 /capture.c | |
parent | 0bf9059c61c45e4006632a7292df68199355cad8 (diff) | |
download | wireshark-e88d4d3a3029f5c8f8bae73b317d225d3c85845a.tar.gz wireshark-e88d4d3a3029f5c8f8bae73b317d225d3c85845a.tar.bz2 wireshark-e88d4d3a3029f5c8f8bae73b317d225d3c85845a.zip |
Get rid of "Playback" in capture window title.
svn path=/trunk/; revision=2150
Diffstat (limited to 'capture.c')
-rw-r--r-- | capture.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* capture.c * Routines for packet capture windows * - * $Id: capture.c,v 1.112 2000/07/20 05:09:44 guy Exp $ + * $Id: capture.c,v 1.113 2000/07/21 15:56:15 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -858,7 +858,7 @@ capture(void) } cap_w = gtk_window_new(GTK_WINDOW_TOPLEVEL); - gtk_window_set_title(GTK_WINDOW(cap_w), "Ethereal: Capture / Playback"); + gtk_window_set_title(GTK_WINDOW(cap_w), "Ethereal: Capture"); gtk_window_set_modal(GTK_WINDOW(cap_w), TRUE); /* Container for capture display widgets */ |