Fixed paramter name from being fileName to file.

This commit is contained in:
Robert Osfield
2003-12-13 22:15:47 +00:00
parent 3702947ef9
commit 0c22a6550f

View File

@@ -42,7 +42,7 @@ class ReaderWriterQT : public osgDB::ReaderWriter
osgDB::equalCaseInsensitive(extension,"tga");
}
virtual ReadResult readImage(const std::string& fileName, const osgDB::ReaderWriter::Options*)
virtual ReadResult readImage(const std::string& file, const osgDB::ReaderWriter::Options*)
{
std::string ext = osgDB::getLowerCaseFileExtension(file);
if (!acceptsExtension(ext)) return ReadResult::FILE_NOT_HANDLED;