diff options
Diffstat (limited to 'linden/indra/llxml/llxmlnode.h')
-rw-r--r-- | linden/indra/llxml/llxmlnode.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/llxml/llxmlnode.h b/linden/indra/llxml/llxmlnode.h index 7c22157..e2019a8 100644 --- a/linden/indra/llxml/llxmlnode.h +++ b/linden/indra/llxml/llxmlnode.h | |||
@@ -183,7 +183,8 @@ public: | |||
183 | const LLString& getValue() const { return mValue; } | 183 | const LLString& getValue() const { return mValue; } |
184 | LLString getTextContents() const; | 184 | LLString getTextContents() const; |
185 | const LLStringTableEntry* getName() const { return mName; } | 185 | const LLStringTableEntry* getName() const { return mName; } |
186 | BOOL hasName(LLString name) const { return mName == gStringTable.checkStringEntry(name); } | 186 | BOOL hasName(const char* name) const { return mName == gStringTable.checkStringEntry(name); } |
187 | BOOL hasName(LLString name) const { return mName == gStringTable.checkStringEntry(name.c_str()); } | ||
187 | const LLString& getID() const { return mID; } | 188 | const LLString& getID() const { return mID; } |
188 | 189 | ||
189 | U32 getChildCount() const; | 190 | U32 getChildCount() const; |