mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-12 13:59:20 +03:00
[project @ 2003-09-10 22:40:32 by jmb]
Fix Drawfile module check. Add else statement to box.c:788 svn path=/import/netsurf/; revision=282
This commit is contained in:
parent
b858507d90
commit
abf3c0f80a
@ -15,8 +15,8 @@ RMEnsure UtilityModule 3.70 RMEnsure CallASWI 0.02 Error NetSurf requires the Ca
|
|||||||
| Ensure DrawFile module is installed
|
| Ensure DrawFile module is installed
|
||||||
| http://acorn.riscos.com/riscos/releases/drawfile.arc
|
| http://acorn.riscos.com/riscos/releases/drawfile.arc
|
||||||
| Should be installed in !System.310.Modules
|
| Should be installed in !System.310.Modules
|
||||||
RMEnsure UtilityModule 3.50 RMEnsure DrawFile 1.30 RMLoad System:Modules.DrawFile
|
RMEnsure DrawFile 1.30 RMLoad System:Modules.DrawFile
|
||||||
RMEnsure UtilityModule 3.50 RMEnsure DrawFile 1.30 Error NetSurf requires the DrawFile module
|
RMEnsure DrawFile 1.30 Error NetSurf requires the DrawFile module
|
||||||
|
|
||||||
| Ensure SharedUnixLibrary is installed
|
| Ensure SharedUnixLibrary is installed
|
||||||
| http://www.chocky.org/unix/usage.html
|
| http://www.chocky.org/unix/usage.html
|
||||||
|
@ -785,7 +785,7 @@ struct result box_input(xmlNode *n, struct status *status,
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
if (stricmp(type, "password") == 0)
|
else if (stricmp(type, "password") == 0)
|
||||||
{
|
{
|
||||||
box = box_create(style, NULL, 0);
|
box = box_create(style, NULL, 0);
|
||||||
box->gadget = gadget = xcalloc(1, sizeof(struct gui_gadget));
|
box->gadget = gadget = xcalloc(1, sizeof(struct gui_gadget));
|
||||||
|
Loading…
Reference in New Issue
Block a user