Show
Ignore:
Timestamp:
03/11/10 17:53:35 (3 years ago)
Author:
robert
Message:

From Sukender, "I had some conflicts when updating but they seem resolved now. Attached files (four files) are against rev. 11200. Changelog:
- Replaced exceptions with assert() or OSG_NOTIFY
- Replaced osg::notify() with OSG_NOTIFY
- Changed braces and tabs to fit OSG coding convention
- Cleaned a few things in code (names, added deallocations upon error)"

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • OpenSceneGraph/trunk/src/osgPlugins/3ds/WriterNodeVisitor.h

    r11194 r11203  
    5959                        const std::string & srcDirectory); 
    6060 
    61         bool        suceedLastApply() const; 
    62         void        failedApply(); 
     61        bool succeeded() const { return _succeeded; } 
    6362        virtual void apply(osg::Geode &node); 
    6463        virtual void apply(osg::Billboard &node); 
     
    146145        *  \return the number of vertices in the geode. 
    147146        */ 
    148         unsigned int  
    149         calcVertices(osg::Geode & geo); 
     147        unsigned int calcVertices(osg::Geode & geo); 
    150148 
    151149        /**  
     
    198196        void apply3DSMatrixNode(osg::Node &node, const osg::Matrix & m, const char * const prefix); 
    199197 
    200         bool                                _suceedLastApply; 
     198        bool                                _succeeded; 
    201199        std::string                         _directory; 
    202200        std::string                         _srcDirectory;