mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
Show message box on error.
This commit is contained in:
parent
12aebe1fa1
commit
ef4b7e75c4
@ -44,9 +44,6 @@
|
|||||||
#include "atari/gemtk/gemtk.h"
|
#include "atari/gemtk/gemtk.h"
|
||||||
#include "atari/res/netsurf.rsh"
|
#include "atari/res/netsurf.rsh"
|
||||||
|
|
||||||
//TODO: remove/add guiwin handle on close / open - so that the list
|
|
||||||
// is kept tiny.
|
|
||||||
|
|
||||||
extern GRECT desk_area;
|
extern GRECT desk_area;
|
||||||
|
|
||||||
struct atari_hotlist hl;
|
struct atari_hotlist hl;
|
||||||
@ -124,7 +121,8 @@ void hotlist_init(void)
|
|||||||
handle = wind_create(flags, 0, 0, desk_area.g_w, desk_area.g_h);
|
handle = wind_create(flags, 0, 0, desk_area.g_w, desk_area.g_h);
|
||||||
hl.window = gemtk_wm_add(handle, GEMTK_WM_FLAG_DEFAULTS, NULL);
|
hl.window = gemtk_wm_add(handle, GEMTK_WM_FLAG_DEFAULTS, NULL);
|
||||||
if( hl.window == NULL ) {
|
if( hl.window == NULL ) {
|
||||||
LOG(("Failed to allocate Hotlist"));
|
gemtk_msg_box_show(GEMTK_MSG_BOX_ALERT,
|
||||||
|
"Failed to allocate Hotlist");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
wind_set_str(handle, WF_NAME, (char*)messages_get("Hotlist"));
|
wind_set_str(handle, WF_NAME, (char*)messages_get("Hotlist"));
|
||||||
|
Loading…
Reference in New Issue
Block a user