mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 00:07:24 +00:00
changed call to dom.save because gcc didn't like a reference to a variable created inside the function call
This commit is contained in:
parent
ef6e7b2614
commit
d595187fc1
@ -24,6 +24,9 @@
|
||||
History
|
||||
|
||||
$Log$
|
||||
Revision 1.3 2006/06/16 07:28:21 zifnab1974
|
||||
changed call to dom.save because gcc didn't like a reference to a variable created inside the function call
|
||||
|
||||
Revision 1.2 2006/06/16 01:26:07 cignoni
|
||||
Added Initial Filter Script Dialog
|
||||
|
||||
@ -93,7 +96,8 @@ bool FilterScript::save(QString filename)
|
||||
}
|
||||
QFile file("Prova.xml");
|
||||
file.open(QIODevice::WriteOnly);
|
||||
doc.save(QTextStream(&file),1);
|
||||
QTextStream qstream(&file);
|
||||
doc.save(qstream,1);
|
||||
file.close();
|
||||
return true;
|
||||
}
|
||||
@ -132,4 +136,4 @@ bool FilterScript::open(QString filename)
|
||||
//FilterParameter FilterScript::FilterPar(QDomNode &n)
|
||||
//{
|
||||
//
|
||||
//}
|
||||
//}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user