From dd1a2bcaecfb2ca0d7f62c229b27c0ed2f62e46e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 8 May 2008 13:22:52 +0000 Subject: [PATCH] From Roland Smeenk, "Small typo and implementation fix for setInitialDrawCallback." --- include/osg/Camera | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/Camera b/include/osg/Camera index 5a0c5d240..43f8750bf 100644 --- a/include/osg/Camera +++ b/include/osg/Camera @@ -449,7 +449,7 @@ class OSG_EXPORT Camera : public Transform, public CullSettings }; /** Set the initial draw callback for custom operations to be done before the drawing of the camera's subgraph and pre render stages.*/ - void setIntialDrawCallback(DrawCallback* cb) { _preDrawCallback = cb; } + void setInitialDrawCallback(DrawCallback* cb) { _initialDrawCallback = cb; } /** Get the initial draw callback.*/ DrawCallback* getInitialDrawCallback() { return _initialDrawCallback.get(); }