From 7f8efa7cef111601bd83ea4594bc9140c1928438 Mon Sep 17 00:00:00 2001 From: Torsten Dreyer Date: Thu, 12 Aug 2010 11:35:09 +0200 Subject: [PATCH] use correct parameter types for SGText::UpdateCallback --- simgear/scene/model/SGText.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/scene/model/SGText.cxx b/simgear/scene/model/SGText.cxx index 92b0d994..e7c536a3 100644 --- a/simgear/scene/model/SGText.cxx +++ b/simgear/scene/model/SGText.cxx @@ -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 ), -- 2.39.5