diff options
author | Ima Mechanique <ima.mechanique@secondlife.com> | 2013-12-17 18:23:09 +0000 |
---|---|---|
committer | Ima Mechanique <ima.mechanique@secondlife.com> | 2013-12-17 18:23:09 +0000 |
commit | f6d86fcacf79c8147e2075db64caee7521f3b227 (patch) | |
tree | 9ec21c2b92362a8cbb669f8909f5fe279c2daec1 /indra/llui/llkeywords.h | |
parent | 96e26e2ee4805ff56505f868b648203a642d8d06 (diff) |
Fixing some BOOL to bool and changing one function to void
Diffstat (limited to 'indra/llui/llkeywords.h')
-rwxr-xr-x | indra/llui/llkeywords.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/indra/llui/llkeywords.h b/indra/llui/llkeywords.h index d0f1de8389..689fd75bcd 100755 --- a/indra/llui/llkeywords.h +++ b/indra/llui/llkeywords.h @@ -83,8 +83,8 @@ public: S32 getLengthHead() const { return mToken.size(); } S32 getLengthTail() const { return mDelimiter.size(); } - BOOL isHead(const llwchar* s) const; - BOOL isTail(const llwchar* s) const; + bool isHead(const llwchar* s) const; + bool isTail(const llwchar* s) const; const LLWString& getToken() const { return mToken; } const LLColor4& getColor() const { return mColor; } TOKEN_TYPE getType() const { return mType; } @@ -112,12 +112,10 @@ public: void addColorGroup(const std::string key_in, const LLColor4 color); void clearLoaded() { mLoaded = false; } LLColor4 getColorGroup(const std::string key_in); - BOOL loadFromFile(); - BOOL loadFromFile(const std::string& 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); + void initialise(LLSD SyntaxXML); void processTokens(); // Add the token as described |