[Gambas-devel] create component
Laurent Carlier
lordheavy at ...141...
Tue Dec 28 09:37:08 CET 2004
Le Mardi 28 Décembre 2004 08:24, Frank Berg a écrit :
> > if i run "gbi -a" in the console : the output are:
>
> charlie was show me 2 errors in my files.
> now i can se while compilation the ax25.info
>
> the gbi -a output include now the ax25 to,
> but ist come the error lib.gb.so 1 line later
>
> _______
>
> but:
>
> i make an new project, in main_start i set an STOP commando
> start the project, the IDE stops at STOP
> good,
> i check the gb.ax25 to ON
> i start the project, the IDE will not start
> bad
> i write an error line bevor STOP, "dim a as new"
> i start the project, the IDE will not start, no error is reported
> bad
> i check the gb.ax25 to OFF
> i start the project, the IDE is starting, the error is reported
> good
>
> bad: my ax25 is wrong
>
> frank
>
> ps.: i use the suse 9.2 dist
in main.c :
GB_DESC *GB_CLASSES[] =
{
AX25Desc
};
missing NULL :
GB_DESC *GB_CLASSES[] =
{
AX25Desc,
NULL
};
Regards,
--
Laurent Carlier
More information about the Devel
mailing list