Fixed warnings

This commit is contained in:
Robert Osfield 2010-12-13 13:41:42 +00:00
parent 1402583d17
commit c4fded0629
2 changed files with 3 additions and 3 deletions

View File

@ -219,9 +219,9 @@ void PosterIntersector::intersect( osgUtil::IntersectionVisitor& iv, osg::Drawab
}
/* PosterPrinter: The implementation class of high-res rendering */
PosterPrinter::PosterPrinter()
: _isRunning(false), _isFinishing(false), _lastBindingFrame(0),
PosterPrinter::PosterPrinter():
_outputTiles(false), _outputTileExt("bmp"),
_isRunning(false), _isFinishing(false), _lastBindingFrame(0),
_currentRow(0), _currentColumn(0),
_camera(0), _finalPoster(0)
{

View File

@ -45,8 +45,8 @@ protected:
}
PagedNodeNameSet _pagedNodeNames;
unsigned int _needToApplyCount;
unsigned int _appliedCount;
unsigned int _needToApplyCount;
bool _addingCallbacks;
};