X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Frender%2Fslot.h;h=a675c64fb879a8f160e601dd5ccf1542aec0d313;hp=40dfd7587abed4c2ce615533c84a69b1faa4cde7;hb=HEAD;hpb=38712d8ecc57d043a2419ffbaeeb57f7a6586f14 diff --git a/source/render/slot.h b/source/render/slot.h index 40dfd758..a675c64f 100644 --- a/source/render/slot.h +++ b/source/render/slot.h @@ -13,11 +13,11 @@ needs to be switched without affecting the rest. class Slot: public Renderable { private: - Renderable *renderable = 0; + Renderable *content = 0; public: void set(Renderable *); - Renderable *get() const { return renderable; } + Renderable *get() const { return content; } virtual const Matrix *get_matrix() const; virtual const Geometry::BoundingSphere *get_bounding_sphere() const;