summaryrefslogtreecommitdiff
path: root/indra/newview/llsyntaxid.cpp
diff options
context:
space:
mode:
authorIma Mechanique <ima.mechanique@secondlife.com>2013-11-10 17:43:17 +0000
committerIma Mechanique <ima.mechanique@secondlife.com>2013-11-10 17:43:17 +0000
commitda0cd7b845028f679e6ce7243715d52481f0c430 (patch)
tree8ff60476e0a044231bd55f97751b90030713f6da /indra/newview/llsyntaxid.cpp
parenta4c5b5c416e9a289fa2caa6d61d05e1f68605b5a (diff)
Adding getter for mFullFileSpec, shortening loadKeywordsFileIntoLLSD to loadKeywordsIntoLLSD.
Diffstat (limited to 'indra/newview/llsyntaxid.cpp')
-rw-r--r--indra/newview/llsyntaxid.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llsyntaxid.cpp b/indra/newview/llsyntaxid.cpp
index 2388f1c5ef..18869c215d 100644
--- a/indra/newview/llsyntaxid.cpp
+++ b/indra/newview/llsyntaxid.cpp
@@ -248,7 +248,7 @@ void LLSyntaxIdLSL::initialise()
LL_WARNS("LSLSyntax")
<< "Filename is cached, no need to download!"
<< LL_ENDL;
- loadKeywordsFileIntoLLSD();
+ loadKeywordsIntoLLSD();
}
}
else
@@ -256,7 +256,7 @@ void LLSyntaxIdLSL::initialise()
LL_WARNS("LSLSyntax")
<< "ID is null so SyntaxID does not need to be processed!"
<< LL_ENDL;
- loadKeywordsFileIntoLLSD();
+ loadKeywordsIntoLLSD();
}
mFileNameCurrent = mFileNameNew;
mSyntaxIdCurrent = mSyntaxIdNew;
@@ -278,7 +278,7 @@ void LLSyntaxIdLSL::initialise()
* contained data to the specified LLSD object.
* @return Returns boolean true/false indicating success or failure.
*/
-bool LLSyntaxIdLSL::loadKeywordsFileIntoLLSD()
+bool LLSyntaxIdLSL::loadKeywordsIntoLLSD()
{
LL_WARNS("LSLSyntax")
<< "Trying to open default or cached keyword file ;-)"