1.注释掉一些不用的输出

2.删掉一些错误的注释

Signed-off-by: facat@lab.com <facat@lab.com>
This commit is contained in:
facat@lab.com
2014-12-06 22:12:17 +08:00
parent 69cd117f35
commit 000f9b89fa
9 changed files with 29 additions and 29 deletions

View File

@@ -12,7 +12,7 @@ bool Terminal::derivedParse(QXmlStreamReader& reader)
{
QString cn;
cn=reader.attributes().value("rdf:resource").toString();
this->connectivityNode=cn.replace("#","").leftRef(-1).toString();//返回整个字符串的Ref
this->connectivityNode=cn.replace("#","").leftRef(-1).toString();
qDebug()<<"got "<<"Terminal.ConnectivityNode "<<this->connectivityNode<<"\n";
NodeToTerminal nt;
nt.add(this->connectivityNode,this->id);
@@ -22,7 +22,7 @@ bool Terminal::derivedParse(QXmlStreamReader& reader)
{
QString ce;
ce=reader.attributes().value("rdf:resource").toString();
this->conductingEquipment=ce.replace("#","").leftRef(-1).toString();//返回整个字符串的Ref
this->conductingEquipment=ce.replace("#","").leftRef(-1).toString();
qDebug()<<"got "<<"Terminal.ConductingEquipment "<<this->conductingEquipment<<"\n";
}
return true;