From 1228897b727f95ed1d76869985e40367b0859e6a Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 25 Nov 2008 15:38:11 +0000 Subject: [PATCH] Fixed build for when OSG_USE_REF_PTR_IMPLICIT_OUTPUT_CONVERSION is off --- include/osgAnimation/Timeline | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgAnimation/Timeline b/include/osgAnimation/Timeline index 26510d613..b9a218c72 100644 --- a/include/osgAnimation/Timeline +++ b/include/osgAnimation/Timeline @@ -213,7 +213,7 @@ namespace osgAnimation // process all pending remove action operation while( !_removeActionOperations.empty()) { - internalRemoveAction(_removeActionOperations.back().second); + internalRemoveAction(_removeActionOperations.back().second.get()); _removeActionOperations.pop_back(); } }