aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-08 09:19:46 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-08 09:19:46 +0000
commitcd7b8f0f083c5e98cc6078e7256e05b7604a12d1 (patch)
tree356ea6e0a5bbf243d12a8bf2ff095ae13688540d
parentc5b67384a5c8e886df00cbad19eb891041ce9920 (diff)
set the window title of the Win32 debug console
svn path=/trunk/; revision=15720
-rw-r--r--gtk/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/main.c b/gtk/main.c
index f63928f368..f76d7a5d04 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -2603,6 +2603,9 @@ create_console(void)
disappear out from under them, giving the user no chance to see
the message(s) we put in there). */
atexit(destroy_console);
+
+ SetConsoleTitle("Ethereal Debug Console");
+
}
}