From 4ce0d8af649c2a4c881c5fd4f458179e460e670e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 29 Jun 2006 19:38:07 +0000 Subject: [PATCH] From David Callu, compile fix for gcc 4.1 --- src/osgPlugins/txp/TXPArchive.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/txp/TXPArchive.h b/src/osgPlugins/txp/TXPArchive.h index 7c173b551..120686cbb 100644 --- a/src/osgPlugins/txp/TXPArchive.h +++ b/src/osgPlugins/txp/TXPArchive.h @@ -171,7 +171,7 @@ namespace txp // For version 2.1 and over this function can only be call // with lod = 0, since the archive tile table will contain // only tiles with lod = 0 - osg::Group* TXPArchive::getTileContent( + osg::Group* getTileContent( int x, int y, int lod, @@ -182,7 +182,7 @@ namespace txp std::vector& childInfoList); // To be used for Version 2.1 with lod > 0 - osg::Group* TXPArchive::getTileContent( + osg::Group* getTileContent( const TileLocationInfo& loc, double realMinRange, double realMaxRange,