From c4fded062961d91ce0e188650b1d5b4f3cec06ef Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 13 Dec 2010 13:41:42 +0000 Subject: [PATCH] Fixed warnings --- examples/osgposter/PosterPrinter.cpp | 4 ++-- examples/osgposter/PosterPrinter.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/osgposter/PosterPrinter.cpp b/examples/osgposter/PosterPrinter.cpp index b97aa2fac..42f04abb4 100644 --- a/examples/osgposter/PosterPrinter.cpp +++ b/examples/osgposter/PosterPrinter.cpp @@ -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) { diff --git a/examples/osgposter/PosterPrinter.h b/examples/osgposter/PosterPrinter.h index 8b912e208..444d1e659 100644 --- a/examples/osgposter/PosterPrinter.h +++ b/examples/osgposter/PosterPrinter.h @@ -45,8 +45,8 @@ protected: } PagedNodeNameSet _pagedNodeNames; - unsigned int _needToApplyCount; unsigned int _appliedCount; + unsigned int _needToApplyCount; bool _addingCallbacks; };