]> git.tdb.fi Git - libs/gl.git/blobdiff - source/render/slot.h
Rename "renderable" to "content" in Effects and Scenes
[libs/gl.git] / source / render / slot.h
index 40dfd7587abed4c2ce615533c84a69b1faa4cde7..a675c64fb879a8f160e601dd5ccf1542aec0d313 100644 (file)
@@ -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<float, 3> *get_bounding_sphere() const;