summaryrefslogtreecommitdiff
path: root/indra/llxuixml/llxuiparser.h
diff options
context:
space:
mode:
authorRichard Nelson <none@none>2010-09-14 10:47:43 -0700
committerRichard Nelson <none@none>2010-09-14 10:47:43 -0700
commit369d12bcfb9e12799509a70566e1220d04d0e189 (patch)
treeb1ea8562b9a5d2d2009321128d85100df1eb7e37 /indra/llxuixml/llxuiparser.h
parent8348dae46ffc053b3f638c6342a641cda5e6ea22 (diff)
fixed text contents parsing for LLSimpleXUIParser...each contiguous range of text is submitted as a new "value" element whenever an open/close tag is encountered
Diffstat (limited to 'indra/llxuixml/llxuiparser.h')
-rw-r--r--indra/llxuixml/llxuiparser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llxuixml/llxuiparser.h b/indra/llxuixml/llxuiparser.h
index 2522128e03..5c613b0c69 100644
--- a/indra/llxuixml/llxuiparser.h
+++ b/indra/llxuixml/llxuiparser.h
@@ -218,6 +218,7 @@ private:
void endElement(const char *name);
void characterData(const char *s, int len);
bool readAttributes(const char **atts);
+ void processText();
Parser::name_stack_t mNameStack;
struct XML_ParserStruct* mParser;