summaryrefslogtreecommitdiff
path: root/riscos/menus.c
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-05-07 19:14:54 +0000
committerJames Bursa <james@netsurf-browser.org>2004-05-07 19:14:54 +0000
commit24fb50b120a1d56e033b53d455fcc3e877b3eea4 (patch)
tree2c7aebb7557766b190ecf47a76dda403ed56c10a /riscos/menus.c
parent9d9f208d7e7a9f8d8ef3dc8b481f21e5db428471 (diff)
downloadnetsurf-24fb50b120a1d56e033b53d455fcc3e877b3eea4.tar.gz
netsurf-24fb50b120a1d56e033b53d455fcc3e877b3eea4.tar.bz2
[project @ 2004-05-07 19:14:54 by bursa]
Implement multitasking warning dialog. Warn user if resolvers not set. svn path=/import/netsurf/; revision=841
Diffstat (limited to 'riscos/menus.c')
-rw-r--r--riscos/menus.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/riscos/menus.c b/riscos/menus.c
index 7eab07e45..a7d49a140 100644
--- a/riscos/menus.c
+++ b/riscos/menus.c
@@ -683,7 +683,7 @@ void ro_gui_menu_warning(wimp_message_menu_warning *warning)
if (error) {
LOG(("0x%x: %s\n", error->errnum, error->errmess));
- warn_user(error->errmess);
+ warn_user("MenuError", error->errmess);
}
}
@@ -846,7 +846,7 @@ void ro_gui_menu_pageinfo(wimp_message_menu_warning *warning)
warning->pos.x, warning->pos.y);
if (error) {
LOG(("0x%x: %s\n", error->errnum, error->errmess));
- warn_user(error->errmess);
+ warn_user("MenuError", error->errmess);
}
}
@@ -885,7 +885,7 @@ void ro_gui_menu_objectinfo(wimp_message_menu_warning *warning)
warning->pos.x, warning->pos.y);
if (error) {
LOG(("0x%x: %s\n", error->errnum, error->errmess));
- warn_user(error->errmess);
+ warn_user("MenuError", error->errmess);
}
}