]> git.mxchange.org Git - simgear.git/commitdiff
use correct parameter types for SGText::UpdateCallback
authorTorsten Dreyer <Torsten@t3r.de>
Thu, 12 Aug 2010 09:35:09 +0000 (11:35 +0200)
committerTorsten Dreyer <Torsten@t3r.de>
Thu, 12 Aug 2010 09:35:09 +0000 (11:35 +0200)
simgear/scene/model/SGText.cxx

index 92b0d99461f45d5ccab17caf76279142ba265c04..e7c536a3482d6ffd23e564582f734faf6c6ae34d 100644 (file)
@@ -34,7 +34,7 @@ using std::string;
 
 class SGText::UpdateCallback : public osg::NodeCallback {
 public:
-  UpdateCallback( osgText::Text * aText, SGConstPropertyNode_ptr aProperty, double aScale, double aOffset, double aTruncate, double aNumeric, const char * aFormat ) :
+  UpdateCallback( osgText::Text * aText, SGConstPropertyNode_ptr aProperty, double aScale, double aOffset, bool aTruncate, bool aNumeric, const char * aFormat ) :
     text( aText ),
     property( aProperty ),
     scale( aScale ),