diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-08-04 18:55:25 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-08-04 18:55:25 (GMT) |
commit | cf190ff46ee1ce6ffa68ae932682b27438badc91 (patch) | |
tree | fa4ebb74f0f737566755a5da816a30fe388c74d2 /module.cc | |
parent | cc803576dcc4810d1ba415895b83ac9a3079de2f (diff) |
Stefan Farthofer (aka meta/metaz):
Renamed some enums to avoid collitions with windows.h defines
git-svn-id: http://svn.clifford.at/openscad/trunk@86 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'module.cc')
-rw-r--r-- | module.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -261,7 +261,7 @@ CSGTerm *AbstractNode::render_csg_term(double m[16], QVector<CSGTerm*> *highligh if (t2 && !t1) { t1 = t2; } else if (t2 && t1) { - t1 = new CSGTerm(CSGTerm::UNION, t1, t2); + t1 = new CSGTerm(CSGTerm::TYPE_UNION, t1, t2); } } if (t1 && modinst->tag_highlight && highlights) |