diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-02-11 03:55:48 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-02-11 03:55:48 +0000 |
commit | 2e4e2297396d86476343a6715dcccf6cbc22b7cb (patch) | |
tree | 3d37bea302ee813754be0fc8ec00d0db86975416 /simple_dialog.h | |
parent | 34349cedcc68f3615354e87955cc8156461b9abf (diff) | |
download | wireshark-2e4e2297396d86476343a6715dcccf6cbc22b7cb.tar.gz wireshark-2e4e2297396d86476343a6715dcccf6cbc22b7cb.tar.bz2 wireshark-2e4e2297396d86476343a6715dcccf6cbc22b7cb.zip |
Get rid of the "Question" alert box type - rename it to "Confirmation",
as that seems to be the name used in the GNOME HIG, at least. Make it
use the Warning icon (that's what the GNOME HIG says - and it's also
what's used for the equivalent on Windows), and use it for the "Save
current capture?" alert boxes.
svn path=/trunk/; revision=10030
Diffstat (limited to 'simple_dialog.h')
-rw-r--r-- | simple_dialog.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/simple_dialog.h b/simple_dialog.h index 5f06791435..3b44d5f6d9 100644 --- a/simple_dialog.h +++ b/simple_dialog.h @@ -2,7 +2,7 @@ * Definitions for alert box routines with toolkit-independent APIs but * toolkit-dependent implementations. * - * $Id: simple_dialog.h,v 1.9 2004/02/04 01:10:36 guy Exp $ + * $Id: simple_dialog.h,v 1.10 2004/02/11 03:55:47 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -37,15 +37,15 @@ extern "C" { WARN: tells the user about a problem; the only button should be "OK" - QUESTION: asks the user for confirmation; there should be more than one - button + CONFIRMATION: asks the user for confirmation; there should be more than + one button ERROR: tells the user about a serious problem; the only button should be "OK". */ -#define ESD_TYPE_INFO 0x00 -#define ESD_TYPE_WARN 0x01 -#define ESD_TYPE_QUESTION 0x02 -#define ESD_TYPE_ERROR 0x03 +#define ESD_TYPE_INFO 0x00 +#define ESD_TYPE_WARN 0x01 +#define ESD_TYPE_CONFIRMATION 0x02 +#define ESD_TYPE_ERROR 0x03 /* Flag to be ORed with the dialog type, to specify that the dialog is to be modal. */ |