diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2004-01-31 02:25:46 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2004-01-31 02:25:46 +0000 |
commit | 25edd1c53e8ad3f53ef29d7cc5a6ca5a563f75a7 (patch) | |
tree | a773563b329465d8692e3cd778050f9def226c6f /simple_dialog.h | |
parent | d90d26ece2144be142615e6455067ff1ef72554b (diff) | |
download | wireshark-25edd1c53e8ad3f53ef29d7cc5a6ca5a563f75a7.tar.gz wireshark-25edd1c53e8ad3f53ef29d7cc5a6ca5a563f75a7.tar.bz2 wireshark-25edd1c53e8ad3f53ef29d7cc5a6ca5a563f75a7.zip |
renamed ESD_TYPE_CRIT to ESD_TYPE_ERROR to
better reflect the real error text
svn path=/trunk/; revision=9913
Diffstat (limited to 'simple_dialog.h')
-rw-r--r-- | simple_dialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/simple_dialog.h b/simple_dialog.h index c57ddb2ea9..f3834222e9 100644 --- a/simple_dialog.h +++ b/simple_dialog.h @@ -2,7 +2,7 @@ * Definitions for dialog box routines with toolkit-independent APIs but * toolkit-dependent implementations. * - * $Id: simple_dialog.h,v 1.5 2004/01/29 23:07:17 ulfl Exp $ + * $Id: simple_dialog.h,v 1.6 2004/01/31 02:25:43 ulfl Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -34,7 +34,7 @@ extern "C" { /* Dialog type. */ #define ESD_TYPE_INFO 0x00 #define ESD_TYPE_WARN 0x01 -#define ESD_TYPE_CRIT 0x02 +#define ESD_TYPE_ERROR 0x02 #define ESD_TYPE_QUEST 0x03 /* Flag to be ORed with the dialog type, to specify that the dialog is |