From: Thiago Macieira Date: Wed, 18 Jul 2007 16:28:00 +0000 (+0000) Subject: Daily unbreak compilation X-Git-Tag: v3.92.0~26 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=059941238068acc63a57ecb2475d0293f99733a9;p=libqmvoc.git Daily unbreak compilation svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=689591 --- diff --git a/kdeeducore/keduvockvtml2reader.cpp b/kdeeducore/keduvockvtml2reader.cpp index 809267c..339c858 100644 --- a/kdeeducore/keduvockvtml2reader.cpp +++ b/kdeeducore/keduvockvtml2reader.cpp @@ -681,19 +681,19 @@ bool KEduVocKvtml2Reader::readConjug(QDomElement &conjugElement, KEduVocConjugat QDomElement currentGroup = conjugElement.firstChildElement(KVTML_SINGULAR); if (!currentGroup.isNull()) { - QDomElement currentElement = currentGroup.firstChildElement(KVTML_FIRSTPERSON); + QDomElement currentElement = currentGroup.firstChildElement(KVTML_1STPERSON); if (!currentElement.isNull()) { singfirst = currentElement.text(); } - currentElement = currentGroup.firstChildElement(KVTML_SECONDPERSON); + currentElement = currentGroup.firstChildElement(KVTML_2NDPERSON); if (!currentElement.isNull()) { singsecond = currentElement.text(); } - currentGroup = currentGroup.firstChildElement(KVTML_THIRDPERSON); + currentGroup = currentGroup.firstChildElement(KVTML_3RDPERSON); if (!currentGroup.isNull()) { currentElement = currentGroup.firstChildElement(KVTML_COMMON); @@ -732,19 +732,19 @@ bool KEduVocKvtml2Reader::readConjug(QDomElement &conjugElement, KEduVocConjugat currentGroup = conjugElement.firstChildElement(KVTML_PLURAL); if (!currentGroup.isNull()) { - QDomElement currentElement = currentGroup.firstChildElement(KVTML_FIRSTPERSON); + QDomElement currentElement = currentGroup.firstChildElement(KVTML_1STPERSON); if (!currentElement.isNull()) { plurfirst = currentElement.text(); } - currentElement = currentGroup.firstChildElement(KVTML_SECONDPERSON); + currentElement = currentGroup.firstChildElement(KVTML_2NDPERSON); if (!currentElement.isNull()) { plursecond = currentElement.text(); } - currentGroup = currentGroup.firstChildElement(KVTML_THIRDPERSON); + currentGroup = currentGroup.firstChildElement(KVTML_3RDPERSON); if (!currentGroup.isNull()) { currentElement = currentGroup.firstChildElement(KVTML_COMMON);