aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/colors.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-07-20 05:10:02 +0000
committerGuy Harris <guy@alum.mit.edu>2000-07-20 05:10:02 +0000
commit024c2d72fe53c1f41bd0257b835e08f9eeffe7b6 (patch)
tree5dafc8e862aa2f8d98ffaa14e89d092df38ffa85 /gtk/colors.c
parente60cf27dc05e8047103d5ec66a7716162854de22 (diff)
Use ESD_TYPE_CRIT for most errors (the model used by various GUIs seems
to use "warning" dialog boxes only to warn the user "if you do that, bad things may happen" *and* to offer them the option either to drive on or quit, so perhaps ESD_TYPE_CRIT should be used for all errors). However, put "Ethereal: Error" rather than "Ethereal: Critical" in the title bar, in the hopes that it'll make it clearer that Something Bad Happened. If the user specifies that captures should be saved to a user-specified file rather than a temporary file, report errors trying to create that file with "file_open_error_message()". Make the "for_writing" argument to "file_open_error_message()" a "gboolean", as it's either TRUE (if the file is being opened for writing) or FALSE (if it's being opened for reading). Report EISDIR as "XXX is a directory (folder), not a file.". svn path=/trunk/; revision=2143
Diffstat (limited to 'gtk/colors.c')
-rw-r--r--gtk/colors.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/colors.c b/gtk/colors.c
index 5fce30e68a..b29315c7cc 100644
--- a/gtk/colors.c
+++ b/gtk/colors.c
@@ -1,7 +1,7 @@
/* colors.c
* Definitions for color structures and routines
*
- * $Id: colors.c,v 1.3 2000/02/12 08:42:28 guy Exp $
+ * $Id: colors.c,v 1.4 2000/07/20 05:09:58 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -188,7 +188,7 @@ read_filters(colfilter *filter)
if ((f = fopen(path, "r")) == NULL) {
if (errno != ENOENT) {
- simple_dialog(ESD_TYPE_WARN, NULL,
+ simple_dialog(ESD_TYPE_CRIT, NULL,
"Could not open filter file\n\"%s\": %s.", path,
strerror(errno));
}
@@ -214,7 +214,7 @@ read_filters(colfilter *filter)
/* we got a filter */
if(dfilter_compile(filter_exp, &temp_dfilter) != 0){
- simple_dialog(ESD_TYPE_WARN, NULL,
+ simple_dialog(ESD_TYPE_CRIT, NULL,
"Could not compile color filter %s from saved filters.\n%s",
name, dfilter_error_msg);
continue;
@@ -280,7 +280,7 @@ write_filters(colfilter *filter)
sprintf(path, "%s/%s", get_home_dir(), name);
if ((f = fopen(path, "w+")) == NULL) {
- simple_dialog(ESD_TYPE_WARN, NULL,
+ simple_dialog(ESD_TYPE_CRIT, NULL,
"Could not open\n%s\nfor writing: %s.",
path, strerror(errno));
g_free(path);