summaryrefslogtreecommitdiff
path: root/indra/newview/llsyntaxid.h
diff options
context:
space:
mode:
authorIma Mechanique <ima.mechanique@secondlife.com>2014-02-06 16:41:07 +0000
committerIma Mechanique <ima.mechanique@secondlife.com>2014-02-06 16:41:07 +0000
commit01b7ae8abe7efc101202fea786e97862c44e1d21 (patch)
treed5576b877dc949999a38145a0c835e2ee394ffb2 /indra/newview/llsyntaxid.h
parent5551e8f04c84d1427fc39b0927eebc6dd58a772f (diff)
Changing how state of loading is reported to better allow other classes to know what is happening.
Diffstat (limited to 'indra/newview/llsyntaxid.h')
-rw-r--r--indra/newview/llsyntaxid.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llsyntaxid.h b/indra/newview/llsyntaxid.h
index a24edf7204..226f1f4941 100644
--- a/indra/newview/llsyntaxid.h
+++ b/indra/newview/llsyntaxid.h
@@ -54,12 +54,12 @@ static const std::string SIMULATOR_FEATURE;
protected:
//LLViewerRegion* region;
+ static bool sInitialised;
static LLSD sKeywordsXml;
static bool sLoaded;
static bool sLoadFailed;
static bool sVersionChanged;
-
private:
std::string mCapabilityName;
std::string mCapabilityURL;
@@ -85,6 +85,7 @@ public:
LLSD getKeywordsXML() const { return sKeywordsXml; }
LLUUID getSyntaxId() const { return mSyntaxIdCurrent; }
bool isDifferentVersion() const { return sVersionChanged; }
+ bool isInitialised() const { return sInitialised; }
void initialise();
bool isLoaded() { return sLoaded; }