aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/main.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-20 08:18:41 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-20 08:18:41 +0000
commitf14ccc2f63cdb0eedaa02f18c7cd4ba56a861c4f (patch)
tree840200bbc7e09f795848306abeec1d22efa5d0f0 /gtk/main.c
parent2bccfcd3c42b7454861e1393a74dc1c141cfe1a6 (diff)
if the capture child pops up it's own console, title it as such
svn path=/trunk/; revision=15889
Diffstat (limited to 'gtk/main.c')
-rw-r--r--gtk/main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/gtk/main.c b/gtk/main.c
index f76d7a5d04..bb54ad893b 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -2604,8 +2604,11 @@ create_console(void)
the message(s) we put in there). */
atexit(destroy_console);
- SetConsoleTitle("Ethereal Debug Console");
-
+ if(capture_child) {
+ SetConsoleTitle("Ethereal Capture Child Debug Console");
+ } else {
+ SetConsoleTitle("Ethereal Debug Console");
+ }
}
}