diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-21 08:59:53 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-21 08:59:53 (GMT) |
commit | 0e4681913485cb450493e9a35ae297d88f12b19d (patch) | |
tree | 22d3ee0037b6afe9b4b74a854e52c3a2cebd5a8b /func.cc | |
parent | 1c2472067c3843342f56b5833c284106ab349417 (diff) |
Clifford Wolf:
Parser seams to be fully functional now
git-svn-id: http://svn.clifford.at/openscad/trunk@5 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'func.cc')
-rw-r--r-- | func.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ QString Function::dump(QString indent, QString name) const if (argexpr[i]) text += QString(" = ") + argexpr[i]->dump(); } - text += QString(")\n%1\t%2;\n").arg(indent, expr->dump()); + text += QString(") = %1;\n").arg(expr->dump()); return text; } |