summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorIma Mechanique <ima.mechanique@secondlife.com>2013-11-10 22:35:49 +0000
committerIma Mechanique <ima.mechanique@secondlife.com>2013-11-10 22:35:49 +0000
commit009245510149c26337ac1cca64a367cd2234725b (patch)
tree88e786fbb050f573d5a5c6f1e81649bcc54a1188 /indra
parentdc317ed70ac8b8344a745b4f43116460efdfdbca (diff)
Removing unused getter/setter and property for mFilenameSyntax, mReady.
Diffstat (limited to 'indra')
-rwxr-xr-xindra/llui/llkeywords.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/indra/llui/llkeywords.h b/indra/llui/llkeywords.h
index 24a0450912..f14605157d 100755
--- a/indra/llui/llkeywords.h
+++ b/indra/llui/llkeywords.h
@@ -113,8 +113,7 @@ public:
LLColor4 getColorGroup(const std::string key_in);
BOOL loadFromFile();
BOOL loadFromFile(const std::string& filename);
- BOOL isLoaded() const { return mLoaded; }
- void setFilenameSyntax(const std::string filename) { mFilenameSyntax = filename; }
+ bool isLoaded() const { return mLoaded; }
void findSegments(std::vector<LLTextSegmentPtr> *seg_list, const LLWString& text, const LLColor4 &defaultColor, class LLTextEditor& editor );
bool initialise(LLSD SyntaxXML);
@@ -179,7 +178,7 @@ protected:
BOOL loadIntoLLSD( const std::string& filename, LLSD& data );
LLSD mColors;
- BOOL mLoaded;
+ bool mLoaded;
LLSD mSyntax;
word_token_map_t mWordTokenMap;
typedef std::deque<LLKeywordToken*> token_list_t;
@@ -194,9 +193,6 @@ protected:
std::string getArguments(LLSD& args);
private:
- BOOL ready() { return mReady; }
- BOOL mReady;
- std::string mFilenameSyntax;
};
#endif // LL_LLKEYWORDS_H