From 027158b441df9483b7955e8fd89d6015f6e6ca3c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 3 Sep 2007 09:56:30 +0000 Subject: [PATCH] From Laurens Voerman, "I hit a bug when making a copy of a PagedLOD node, the copy has lost it's _databasePath and can no longer load it's childen. " Added _databasePath(plod._databasePath), in the copy copy construcutor. --- src/osg/PagedLOD.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osg/PagedLOD.cpp b/src/osg/PagedLOD.cpp index 383f77b47..a60c0cb56 100644 --- a/src/osg/PagedLOD.cpp +++ b/src/osg/PagedLOD.cpp @@ -50,6 +50,7 @@ PagedLOD::PagedLOD() PagedLOD::PagedLOD(const PagedLOD& plod,const CopyOp& copyop): LOD(plod,copyop), + _databasePath(plod._databasePath), _frameNumberOfLastTraversal(plod._frameNumberOfLastTraversal), _numChildrenThatCannotBeExpired(plod._numChildrenThatCannotBeExpired), _perRangeDataList(plod._perRangeDataList)