From 2ac97b5ece4cc890e8abcc2bd5017e371fa5f432 Mon Sep 17 00:00:00 2001 From: Laurens Voerman Date: Wed, 15 May 2019 11:49:17 +0200 Subject: [PATCH] fix typo in ReaderWriterFBX: writObject -> writeObject --- src/osgPlugins/fbx/ReaderWriterFBX.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/fbx/ReaderWriterFBX.h b/src/osgPlugins/fbx/ReaderWriterFBX.h index 7cb5c0270..67a8f2e3b 100644 --- a/src/osgPlugins/fbx/ReaderWriterFBX.h +++ b/src/osgPlugins/fbx/ReaderWriterFBX.h @@ -33,7 +33,7 @@ public: return readNode(filename, options); } - virtual WriteResult writObject(const osg::Node& node, const std::string& filename, const Options* options) const + virtual WriteResult writeObject(const osg::Node& node, const std::string& filename, const Options* options) const { return writeNode(node, filename, options); }