fix misspelling

This commit is contained in:
Chris Danford
2005-02-18 11:55:34 +00:00
parent 8884936a17
commit 26dc26ff62
2 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -101,12 +101,12 @@ struct PARSEINFO
char escape_value; // [set] escape value (default '\\')
char* xml; // [get] xml source
bool erorr_occur; // [get] is occurance of error?
bool error_occur; // [get] is occurance of error?
char* error_pointer; // [get] error position of xml source
PCODE error_code; // [get] error code
CString error_string; // [get] error string
PARSEINFO() { trim_value = true; entity_value = true; entitys = &entityDefault; xml = NULL; erorr_occur = false; error_pointer = NULL; error_code = PIE_PARSE_WELFORMED; escape_value = 0; }
PARSEINFO() { trim_value = true; entity_value = true; entitys = &entityDefault; xml = NULL; error_occur = false; error_pointer = NULL; error_code = PIE_PARSE_WELFORMED; escape_value = 0; }
};
extern PARSEINFO piDefault;