diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-25 01:59:02 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-25 01:59:02 (GMT) |
commit | 16c05eb533f94799a80f5b98c01e952e1cfe337b (patch) | |
tree | 951a555e0662f581c5388f089c5d32a205d09768 /src/openscad.cc | |
parent | 5e96c21e1979dc46e370587fa0cd7793225a37e2 (diff) |
Temporarily removed progress output from file exporting to remove Qt dependency. When reinstating this, use another mechanism
Diffstat (limited to 'src/openscad.cc')
-rw-r--r-- | src/openscad.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/openscad.cc b/src/openscad.cc index 49e1aaf..9d5e44b 100644 --- a/src/openscad.cc +++ b/src/openscad.cc @@ -325,7 +325,7 @@ int main(int argc, char **argv) PRINTF("Can't open file \"%s\" for export", stl_output_file); } else { - export_stl(&root_N, fstream, NULL); + export_stl(&root_N, fstream); fstream.close(); } } @@ -344,7 +344,7 @@ int main(int argc, char **argv) PRINTF("Can't open file \"%s\" for export", off_output_file); } else { - export_off(&root_N, fstream, NULL); + export_off(&root_N, fstream); fstream.close(); } } @@ -359,7 +359,7 @@ int main(int argc, char **argv) PRINTF("Can't open file \"%s\" for export", dxf_output_file); } else { - export_dxf(&root_N, fstream, NULL); + export_dxf(&root_N, fstream); fstream.close(); } } |