aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/mgcp_stat.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-05-22 19:56:19 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-05-22 19:56:19 +0000
commitd6eeb0936db40bb3b402fa31c87521981fe3d0eb (patch)
treec80cf0088027c1e2aeaeb3c228c07c82c581d02a /gtk/mgcp_stat.c
parenta8635a17e77900bb63865919e8e5552982756459 (diff)
going to have a standard behaviour of the dialogs
(including remebering of the dialog size in recent file). for a first step, I replaced all window_new() calls from dialogs into dlg_window_new() ones, and removed all gtk_window_set_position calls, this should be done in a more generalized way svn path=/trunk/; revision=10964
Diffstat (limited to 'gtk/mgcp_stat.c')
-rw-r--r--gtk/mgcp_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/mgcp_stat.c b/gtk/mgcp_stat.c
index 441ac7e917..b9ea9acaa9 100644
--- a/gtk/mgcp_stat.c
+++ b/gtk/mgcp_stat.c
@@ -2,7 +2,7 @@
* mgcp-statistics for ethereal
* Copyright 2003 Lars Roland
*
- * $Id: mgcp_stat.c,v 1.33 2004/03/27 11:13:02 guy Exp $
+ * $Id: mgcp_stat.c,v 1.34 2004/05/22 19:56:19 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -276,7 +276,7 @@ gtk_mgcpstat_init(char *optarg)
mgcpstat_reset(ms);
- ms->win=window_new(GTK_WINDOW_TOPLEVEL, NULL);
+ ms->win=dlg_window_new("MGCP SRT");
SIGNAL_CONNECT(ms->win, "destroy", win_destroy_cb, ms);
ms->vbox=gtk_vbox_new(FALSE, 0);