diff --git a/src/osgPlugins/osgParticle/IO_Program.cpp b/src/osgPlugins/osgParticle/IO_Program.cpp index d4450177a..f60afa788 100644 --- a/src/osgPlugins/osgParticle/IO_Program.cpp +++ b/src/osgPlugins/osgParticle/IO_Program.cpp @@ -5,24 +5,24 @@ #include #include -bool Program_readLocalData(osg::Object &obj, osgDB::Input &fr); -bool Program_writeLocalData(const osg::Object &obj, osgDB::Output &fw); +bool IOProgram_readLocalData(osg::Object &obj, osgDB::Input &fr); +bool IOProgram_writeLocalData(const osg::Object &obj, osgDB::Output &fw); -osgDB::RegisterDotOsgWrapperProxy Program_Proxy +osgDB::RegisterDotOsgWrapperProxy g_IOProgramProxy ( 0, "Program", "Object Node ParticleProcessor Program", - Program_readLocalData, - Program_writeLocalData + IOProgram_readLocalData, + IOProgram_writeLocalData ); -bool Program_readLocalData(osg::Object &, osgDB::Input &) +bool IOProgram_readLocalData(osg::Object &, osgDB::Input &) { return false; } -bool Program_writeLocalData(const osg::Object &, osgDB::Output &) +bool IOProgram_writeLocalData(const osg::Object &, osgDB::Output &) { return false; }