Mercurial > fife-parpg
diff engine/core/view/renderers/genericrenderer.h @ 26:70f41ea8e7db
fix compile errors in node setters...
author | spq@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Fri, 11 Jul 2008 11:29:13 +0000 |
parents | e5e2fec68834 |
children | 788cb9525b2f |
line wrap: on
line diff
--- a/engine/core/view/renderers/genericrenderer.h Fri Jul 11 11:25:11 2008 +0000 +++ b/engine/core/view/renderers/genericrenderer.h Fri Jul 11 11:29:13 2008 +0000 @@ -44,16 +44,16 @@ GenericRendererNode(const Point &attached_point); ~GenericRendererNode(); - void setAttached(Instance* attached_instance, const Location &relative_location, const Point &relative_point); - void setAttached(Instance* attached_instance, const Location &relative_location); + void setAttached(Instance* attached_instance, Location* relative_location, const Point &relative_point); + void setAttached(Instance* attached_instance, Location* relative_location); void setAttached(Instance* attached_instance, const Point &relative_point); void setAttached(Instance* attached_instance); - void setAttached(const Location &attached_location, const Point &relative_point); - void setAttached(const Location &attached_location); + void setAttached(Location* attached_location, const Point &relative_point); + void setAttached(Location* attached_location); void setAttached(const Point &attached_point); - void setRelative(const Location &relative_location); - void setRelative(const Location &relative_location, Point relative_point); + void setRelative(Location* relative_location); + void setRelative(Location* relative_location, Point relative_point); void setRelative(const Point &relative_point); Instance* getAttachedInstance();