diff options
author | Ima Mechanique <ima.mechanique@secondlife.com> | 2013-10-22 22:41:08 +0100 |
---|---|---|
committer | Ima Mechanique <ima.mechanique@secondlife.com> | 2013-10-22 22:41:08 +0100 |
commit | dfa8a78c2895e16a4887786d522a70cae59b081e (patch) | |
tree | 093378b243cb72e68e317d9e2e45a738a43e8962 /indra/newview/llsyntaxid.h | |
parent | a0607d45ca12c930b9fb8018243e62aed0e09dc9 (diff) |
STORM-1831 Style cleanup/fixes
Diffstat (limited to 'indra/newview/llsyntaxid.h')
-rw-r--r-- | indra/newview/llsyntaxid.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llsyntaxid.h b/indra/newview/llsyntaxid.h index 6e5a97fd31..e32fcf209e 100644 --- a/indra/newview/llsyntaxid.h +++ b/indra/newview/llsyntaxid.h @@ -33,7 +33,7 @@ public: std::string filenameCurrent() { return mFilenameCurrent; } ELLPath filenamePath() { return mFilenameLocation; } void initialise(); - static void setKeywordsXml(LLSD& content) { LLSyntaxIdLSL::mKeywordsXml = content; } + static void setKeywordsXml(const LLSD& content) { LLSyntaxIdLSL::sKeywordsXml = content; } protected: std::string buildFilename(LLUUID& SyntaxId); @@ -60,6 +60,7 @@ private: std::string mFilenameFull; ELLPath mFilenameLocation; std::string mFilenameSpec; - static LLSD mKeywordsXml; std::string mSimulatorFeature; + + static LLSD sKeywordsXml; }; |