summaryrefslogtreecommitdiff
path: root/amiga/arexx.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-01-26 00:05:01 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-01-26 00:05:01 +0000
commit3a5907c1c40bae0ec70acda808eeaa4044bd0943 (patch)
treece3a4c75f6c4775313df69801f73235cc8614ec2 /amiga/arexx.c
parentc8c806a0c2b5dfaa2cf498631c6044baf43493f9 (diff)
downloadnetsurf-3a5907c1c40bae0ec70acda808eeaa4044bd0943.tar.gz
netsurf-3a5907c1c40bae0ec70acda808eeaa4044bd0943.tar.bz2
Move everything else over to using the class pointers.
Exception: popupmenu.class is still using old _GetClass functions.
Diffstat (limited to 'amiga/arexx.c')
-rw-r--r--amiga/arexx.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/amiga/arexx.c b/amiga/arexx.c
index eb2a6c10a..65f1ebab5 100644
--- a/amiga/arexx.c
+++ b/amiga/arexx.c
@@ -38,6 +38,7 @@
#include "amiga/download.h"
#include "amiga/gui.h"
#include "amiga/hotlist.h"
+#include "amiga/libs.h"
#include "amiga/misc.h"
#include "amiga/theme.h"
@@ -106,7 +107,7 @@ STATIC struct ARexxCmd Commands[] =
BOOL ami_arexx_init(void)
{
- if((arexx_obj = ARexxObject,
+ if((arexx_obj = ARexxObj,
AREXX_HostName,"NETSURF",
AREXX_Commands,Commands,
AREXX_NoSlot,TRUE,
@@ -121,7 +122,7 @@ BOOL ami_arexx_init(void)
{
/* Create a temporary ARexx port so we can send commands to the NetSurf which
* is already running */
- arexx_obj = ARexxObject,
+ arexx_obj = ARexxObj,
AREXX_HostName,"NETSURF",
AREXX_Commands,Commands,
AREXX_NoSlot,FALSE,