Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2013-02-11 15:12:44 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-02-11 15:12:44 +0400
commit9d6210c0ed60301b618d3248ed906ff51935c39f (patch)
tree095f060f7194d0193ad9c9082bb601c4f554cd3d /source/blender/editors/io
parent3a192ca3591d0ed5a6356f791c86cbd2a3d0209a (diff)
Collada Importer: Some code cleanup and optimization of the rescale function
Diffstat (limited to 'source/blender/editors/io')
-rw-r--r--source/blender/editors/io/io_collada.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c
index 2003aeaa848..ca74d7aea57 100644
--- a/source/blender/editors/io/io_collada.c
+++ b/source/blender/editors/io/io_collada.c
@@ -319,7 +319,7 @@ static int wm_collada_import_exec(bContext *C, wmOperator *op)
import_units = RNA_boolean_get(op->ptr, "import_units");
RNA_string_get(op->ptr, "filepath", filename);
- if (collada_import( C, filename, import_units)) {
+ if (collada_import(C, filename, import_units)) {
return OPERATOR_FINISHED;
}
else {