Build failed in Hudson: Amarok-Nightly #94
Thomas Lübking
thomas.luebking at web.de
Thu Jun 3 21:03:36 CEST 2010
Am Thursday 03 June 2010 schrieb Leo Franchi:
> though really we need to decide if we want to depend on qt4.6. i think
> we should not, especially if there is another way to implement this
> class.
there is, pure conv.:
bool QXmlStreamReader::readNextStartElement()
{
while (readNext() != Invalid) {
if (isEndElement())
return false;
else if (isStartElement())
return true;
}
return false;
}
Thomas
More information about the Amarok-devel
mailing list