From 3817dbf1a2e110610f54413bedac04b62e9e4e13 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 16 Feb 2007 15:17:43 +0000 Subject: [PATCH] From Roland Smeenk, "ClipNode contains a method getClipPlaneList that should actually be called setClipPlaneList." --- include/osg/ClipNode | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/ClipNode b/include/osg/ClipNode index 2d1911619..367fc5ffb 100644 --- a/include/osg/ClipNode +++ b/include/osg/ClipNode @@ -61,7 +61,7 @@ class OSG_EXPORT ClipNode : public Group inline const ClipPlane* getClipPlane(unsigned int pos) const { return _planes[pos].get(); } /** Set the ClipPlaneList. */ - inline void getClipPlaneList(const ClipPlaneList& cpl) { _planes=cpl; } + inline void setClipPlaneList(const ClipPlaneList& cpl) { _planes=cpl; } /** Get the ClipPlaneList. */ inline ClipPlaneList& getClipPlaneList() { return _planes; }