Mercurial > MadButterfly
view nodejs/shapes.m4 @ 1415:f34d2fcbcd0d
Revert changeset #88c8c874f4b8.
#88c8c874f4b8 try to fix crashing, but it blame to wrong code. If you
look into runtime stack of xnjsmb_coord_remove(), you will find self
argument is already wrong. It is in an invalid address.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Wed, 06 Apr 2011 15:13:09 +0800 |
parents | 2b492008ce26 |
children |
line wrap: on
line source
define([PROJ_PREFIX], [xnjsmb_auto_])dnl dnl STRUCT([shape], [shape_t], [ACCESSOR([stroke_width], [xnjsmb_shape_stroke_width_get], [xnjsmb_shape_stroke_width_set])], [METHOD([show], [xnjsmb_shape_show], (SELF), 0, []), METHOD([hide], [xnjsmb_shape_hide], (SELF), 0, []), METHOD([remove], [xnjsmb_shape_remove], (SELF), 0, [])]) STRUCT([path], [shape_t], [], [], (([INHERIT], [shape]), ([STMOD], [xnjsmb_shape_mod]))) STRUCT([stext], [shape_t], [], [METHOD([set_text], [xnjsmb_sh_stext_set_text], (SELF, STR([txt])), 1, []), METHOD([set_style], [xnjsmb_sh_stext_set_style], (SELF, ARRAY([blks]), ERR), 1, [])], (([INHERIT], [shape]), ([STMOD], [xnjsmb_shape_mod]))) STRUCT([image], [shape_t], [], [], (([INHERIT], [shape]), ([STMOD], [xnjsmb_shape_mod]))) STRUCT([rect], [shape_t], [], [METHOD([set], [xnjsmb_sh_rect_set], (SELF, NUMBER(x), NUMBER(y), NUMBER(w), NUMBER(h), NUMBER(rx), NUMBER(ry)), 6, [])], (([INHERIT], [shape]), ([STMOD], [xnjsmb_shape_mod])))