diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-06 19:38:45 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-06 19:38:45 (GMT) |
commit | 6fdfde289b2ac09ebbfc30b104f26cdd8af0d823 (patch) | |
tree | f792fda659e5d1bb9042b61bd32014c02069493b /import.cc | |
parent | a96752e37812e7b2cf0d7e3a940186cafb912ac9 (diff) |
Fixed typos in classnames
git-svn-id: http://svn.clifford.at/openscad/trunk@220 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'import.cc')
-rw-r--r-- | import.cc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -38,7 +38,7 @@ class ImportModule : public AbstractModule public: import_type_e type; ImportModule(import_type_e type) : type(type) { } - virtual AbstractNode *evaluate(const Context *ctx, const ModuleInstanciation *inst) const; + virtual AbstractNode *evaluate(const Context *ctx, const ModuleInstantiation *inst) const; }; class ImportNode : public AbstractPolyNode @@ -50,12 +50,12 @@ public: int convexity; double fn, fs, fa; double origin_x, origin_y, scale; - ImportNode(const ModuleInstanciation *mi, import_type_e type) : AbstractPolyNode(mi), type(type) { } + ImportNode(const ModuleInstantiation *mi, import_type_e type) : AbstractPolyNode(mi), type(type) { } virtual PolySet *render_polyset(render_mode_e mode) const; virtual QString dump(QString indent) const; }; -AbstractNode *ImportModule::evaluate(const Context *ctx, const ModuleInstanciation *inst) const +AbstractNode *ImportModule::evaluate(const Context *ctx, const ModuleInstantiation *inst) const { ImportNode *node = new ImportNode(inst, type); |