summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_notes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/JabberG/src/jabber_notes.cpp')
-rw-r--r--protocols/JabberG/src/jabber_notes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_notes.cpp b/protocols/JabberG/src/jabber_notes.cpp
index a6800722c8..5b35fe871b 100644
--- a/protocols/JabberG/src/jabber_notes.cpp
+++ b/protocols/JabberG/src/jabber_notes.cpp
@@ -137,10 +137,10 @@ void CNoteList::LoadXml(HXML hXml)
destroy();
m_bIsModified = false;
- int count = xmlGetChildCount(hXml);
+ int count = XmlGetChildCount(hXml);
for (int i=0; i < count; i++)
{
- CNoteItem *pNote = new CNoteItem(xi.getChild(hXml, i));
+ CNoteItem *pNote = new CNoteItem(xmlGetChild(hXml, i));
if (pNote->IsNotEmpty())
insert(pNote);
else