Russian Qt Forum

Qt => XML => Тема начата: spike_by от Февраль 22, 2010, 18:19



Название: createTextNode() и строка
Отправлено: spike_by от Февраль 22, 2010, 18:19
Уважаемые, вот кусо кода:
Код:
QDomElement file = newcurve.toDocument().createElement("file");
            file.setAttribute("num",QString::number(i+1));
            newcurve.appendChild(file);

.......................................................................

QDomElement cir = file.toDocument().createElement("Cir");
            cir.appendChild(cir.toDocument().createTextNode(QString::fromStdString(cur.inFile.at(i))));           
            file.appendChild(cir);           

qDebug()<<"cir.text() : "<<(cir.text())<<" cur.inFile.at(i): "<<QString::fromStdString(cur.inFile.at(i));
а вот, что получается:
Код:
cir.text() :  "power/10yq045/idvg-0.cis"  cur.inFile.at(i):  "power/10yq045/idvg-0.cir"

Почему так? Что с последним символом?


Название: Re: createTextNode() и строка
Отправлено: SASA от Февраль 25, 2010, 12:18
Я бы вместо QDomNode::toDocument  использовал QDomNode::ownerDocument.
Мож поможет :)