diff options
| author | 2011-08-07 17:37:25 +0000 | |
|---|---|---|
| committer | 2011-08-07 17:37:25 +0000 | |
| commit | cfcdb5f000d77564e43d812afb9e2422eed46b17 (patch) | |
| tree | 461df60e3d78cfb4c187133fa1d98a8b9ab39f36 /src/modules/objects | |
| parent | fussy fixes (diff) | |
| download | KVIrc-cfcdb5f000d77564e43d812afb9e2422eed46b17.tar.gz KVIrc-cfcdb5f000d77564e43d812afb9e2422eed46b17.tar.bz2 KVIrc-cfcdb5f000d77564e43d812afb9e2422eed46b17.zip | |
fix typo
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5922 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects')
| -rw-r--r-- | src/modules/objects/KvsObject_xmlreader.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/objects/KvsObject_xmlreader.cpp b/src/modules/objects/KvsObject_xmlreader.cpp index e72545d2b..0038f1c01 100644 --- a/src/modules/objects/KvsObject_xmlreader.cpp +++ b/src/modules/objects/KvsObject_xmlreader.cpp @@ -45,16 +45,16 @@ This class implements a really simple xml document parser. You will usually derive your own class from this one and reimplement some of the events that it triggers. - You will typically reimplement [classfnc:xmlparser]$onElementStart[/classfnc]() - and [classfnc:xmlparser]$onElementEnd[/classfnc]() that will be called - during the execution of [classfnc:xmlparser]$parse[/classfnc]() in an order + You will typically reimplement [classfnc:xmlreader]$onElementStart[/classfnc]() + and [classfnc:xmlreader]$onElementEnd[/classfnc]() that will be called + during the execution of [classfnc:xmlreader]$parse[/classfnc]() in an order reflecting the order of elements in the parsed document. @functions: !fn: <boolean> $parse(<xml_data:string_or_memorybuffer_object>) Call this function to parse a string that contains an XML document. A typical call for this method will look like: [example] - %x = [fnc]$new[/fnc](xmlparser) + %x = [fnc]$new[/fnc](xmlreader) %x->$parse([fnc]$file.read[/fnc]("/home/somefile.xml")) [/example] During the call the <xml_data> string will be parsed and the |
