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:
authorCampbell Barton <ideasman42@gmail.com>2020-05-28 09:42:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-28 09:42:31 +0300
commit4ddb7a33a4a57a753063731f64c7e5e679c67676 (patch)
tree83686bf1f27b8b8f67da1ddd48173b29c7438425 /source/blender/io
parent5c8ccad652197fd4473168dd2a7c2e24fca2548c (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/io')
-rw-r--r--source/blender/io/alembic/intern/abc_customdata.h2
-rw-r--r--source/blender/io/alembic/intern/alembic_capi.cc3
-rw-r--r--source/blender/io/collada/ErrorHandler.h2
3 files changed, 3 insertions, 4 deletions
diff --git a/source/blender/io/alembic/intern/abc_customdata.h b/source/blender/io/alembic/intern/abc_customdata.h
index c8fc821cb2d..96b57b08681 100644
--- a/source/blender/io/alembic/intern/abc_customdata.h
+++ b/source/blender/io/alembic/intern/abc_customdata.h
@@ -73,7 +73,7 @@ struct CDStreamConfig {
const char **modifier_error_message;
/* Alembic needs Blender to keep references to C++ objects (the destructors
- * finalise the writing to ABC). This map stores OV2fGeomParam objects for the
+ * finalize the writing to ABC). This map stores OV2fGeomParam objects for the
* 2nd and subsequent UV maps; the primary UV map is kept alive by the Alembic
* mesh sample itself. */
std::map<std::string, Alembic::AbcGeom::OV2fGeomParam> abc_uv_maps;
diff --git a/source/blender/io/alembic/intern/alembic_capi.cc b/source/blender/io/alembic/intern/alembic_capi.cc
index 987a3cacb3b..6ca9e82a26c 100644
--- a/source/blender/io/alembic/intern/alembic_capi.cc
+++ b/source/blender/io/alembic/intern/alembic_capi.cc
@@ -875,8 +875,7 @@ bool ABC_import(bContext *C,
bool validate_meshes,
bool as_background_job)
{
- /* Using new here since MEM_* funcs do not call ctor to properly initialize
- * data. */
+ /* Using new here since MEM_* functions do not call constructor to properly initialize data. */
ImportJobData *job = new ImportJobData();
job->bmain = CTX_data_main(C);
job->scene = CTX_data_scene(C);
diff --git a/source/blender/io/collada/ErrorHandler.h b/source/blender/io/collada/ErrorHandler.h
index 9789e93cee9..0c082a3b9dd 100644
--- a/source/blender/io/collada/ErrorHandler.h
+++ b/source/blender/io/collada/ErrorHandler.h
@@ -46,7 +46,7 @@ class ErrorHandler : public COLLADASaxFWL::IErrorHandler {
}
private:
- /** Disable default copy ctor. */
+ /** Disable default copy constructor. */
ErrorHandler(const ErrorHandler &pre);
/** Disable default assignment operator. */
const ErrorHandler &operator=(const ErrorHandler &pre);