From 7c4225e574e0443289792879cde05eb15b4fa385 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 17 Jun 2009 08:56:11 +0000 Subject: [PATCH] Fixed error in DisplaySettings::setNumOfHttpDatabaseThreadsHint --- include/osg/DisplaySettings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/DisplaySettings b/include/osg/DisplaySettings index 991037319..4397b9217 100644 --- a/include/osg/DisplaySettings +++ b/include/osg/DisplaySettings @@ -191,7 +191,7 @@ class OSG_EXPORT DisplaySettings : public osg::Referenced unsigned int getNumOfDatabaseThreadsHint() const { return _numDatabaseThreadsHint; } /** Set the hint for number of threads in the DatbasePager to dedicate to reading http requests.*/ - void setNumOfHttpDatabaseThreadsHint(unsigned int numThreads) { _numDatabaseThreadsHint = numThreads; } + void setNumOfHttpDatabaseThreadsHint(unsigned int numThreads) { _numHttpDatabaseThreadsHint = numThreads; } /** Get the hint for number of threads in the DatbasePager dedicated to reading http requests.*/ unsigned int getNumOfHttpDatabaseThreadsHint() const { return _numHttpDatabaseThreadsHint; }