Skip to content
Snippets Groups Projects
Commit bea2e982 authored by Ima Mechanique's avatar Ima Mechanique
Browse files

Fixing some references to 'filename' I forgot to rename to mFullFileSpec.

parent 3b03ffbd
No related branches found
No related tags found
No related merge requests found
...@@ -514,7 +514,8 @@ Ima Mechanique ...@@ -514,7 +514,8 @@ Ima Mechanique
VWR-10791 VWR-10791
VWR-20553 VWR-20553
VWR-19213 VWR-19213
VWR-23739 VWR-22401
VWR-23739
VWR-24766 VWR-24766
VWR-28065 VWR-28065
Imnotgoing Sideways Imnotgoing Sideways
......
...@@ -293,7 +293,7 @@ bool LLSyntaxIdLSL::loadKeywordsFileIntoLLSD() ...@@ -293,7 +293,7 @@ bool LLSyntaxIdLSL::loadKeywordsFileIntoLLSD()
loaded = (bool)LLSDSerialize::fromXML(content, file); loaded = (bool)LLSDSerialize::fromXML(content, file);
if (!loaded) if (!loaded)
{ {
LL_WARNS("LSLSyntax") << "Unable to deserialise file: " << filename << LL_ENDL; LL_WARNS("LSLSyntax") << "Unable to deserialise file: " << mFullFileSpec << LL_ENDL;
// Is this the right thing to do, or should we leave the old content // Is this the right thing to do, or should we leave the old content
// even if it isn't entirely accurate anymore? // even if it isn't entirely accurate anymore?
...@@ -302,12 +302,12 @@ bool LLSyntaxIdLSL::loadKeywordsFileIntoLLSD() ...@@ -302,12 +302,12 @@ bool LLSyntaxIdLSL::loadKeywordsFileIntoLLSD()
else else
{ {
sKeywordsXml = content; sKeywordsXml = content;
LL_INFOS("LSLSyntax") << "Deserialised file: " << filename << LL_ENDL; LL_INFOS("LSLSyntax") << "Deserialised file: " << mFullFileSpec << LL_ENDL;
} }
} }
else else
{ {
LL_WARNS("LSLSyntax") << "Unable to open file: " << filename << LL_ENDL; LL_WARNS("LSLSyntax") << "Unable to open file: " << mFullFileSpec << LL_ENDL;
} }
return loaded; return loaded;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment