diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2004-02-03 17:59:01 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2004-02-03 17:59:01 +0000 |
commit | 1d2c791ab61911c2170e0dc23460eb496d5f7653 (patch) | |
tree | d3f53bcbe2623d742cb8250d48a9e4213b9338e9 /gtk/simple_dialog.c | |
parent | 7ae8d15d5e4240bf3faadc082544970d08432dc8 (diff) | |
download | wireshark-1d2c791ab61911c2170e0dc23460eb496d5f7653.tar.gz wireshark-1d2c791ab61911c2170e0dc23460eb496d5f7653.tar.bz2 wireshark-1d2c791ab61911c2170e0dc23460eb496d5f7653.zip |
enhanced some dialog messages,
close capture file when user told so
svn path=/trunk/; revision=9965
Diffstat (limited to 'gtk/simple_dialog.c')
-rw-r--r-- | gtk/simple_dialog.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/gtk/simple_dialog.c b/gtk/simple_dialog.c index 780cd30a2f..574979f1e6 100644 --- a/gtk/simple_dialog.c +++ b/gtk/simple_dialog.c @@ -1,7 +1,7 @@ /* simple_dialog.c * Simple message dialog box routines. * - * $Id: simple_dialog.c,v 1.22 2004/01/31 12:49:54 ulfl Exp $ + * $Id: simple_dialog.c,v 1.23 2004/02/03 17:59:01 ulfl Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -227,3 +227,15 @@ void simple_dialog_set_cb(gpointer dialog, simple_dialog_cb_t callback_fct, gpoi OBJECT_SET_DATA(GTK_WIDGET(dialog), CALLBACK_FCT_KEY, callback_fct); OBJECT_SET_DATA(GTK_WIDGET(dialog), CALLBACK_DATA_KEY, data); } + +char * +simple_dialog_primary_start(void) { + return PRIMARY_TEXT_START; +} + +char * +simple_dialog_primary_end(void) { + return PRIMARY_TEXT_END; +} + + |