aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/help_dlg.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-31 02:25:46 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-31 02:25:46 +0000
commitbb63aff30ba09ebe2522de4d08b762204b670aef (patch)
treea773563b329465d8692e3cd778050f9def226c6f /gtk/help_dlg.c
parentdcf4e1a5c964e08482ed66ba18aa6afb59ba04c8 (diff)
renamed ESD_TYPE_CRIT to ESD_TYPE_ERROR to
better reflect the real error text git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9913 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/help_dlg.c')
-rw-r--r--gtk/help_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/help_dlg.c b/gtk/help_dlg.c
index 440d5d589e..1ad6fc081d 100644
--- a/gtk/help_dlg.c
+++ b/gtk/help_dlg.c
@@ -1,6 +1,6 @@
/* help_dlg.c
*
- * $Id: help_dlg.c,v 1.43 2004/01/25 21:27:16 ulfl Exp $
+ * $Id: help_dlg.c,v 1.44 2004/01/31 02:25:45 ulfl Exp $
*
* Laurent Deniel <laurent.deniel@free.fr>
*
@@ -139,7 +139,7 @@ void help_cb(GtkWidget *w _U_, gpointer data _U_)
help_toc_file_path = get_datafile_path(HELP_DIR G_DIR_SEPARATOR_S "toc");
help_toc_file = fopen(help_toc_file_path, "r");
if (help_toc_file == NULL) {
- simple_dialog(ESD_TYPE_CRIT, ESD_BTN_OK, "Could not open file \"%s\": %s",
+ simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "Could not open file \"%s\": %s",
help_toc_file_path, strerror(errno));
g_free(help_toc_file_path);
return;