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>2012-04-22 15:54:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-22 15:54:53 +0400
commit5c891386842037910f5d522c7d3ffb1792b804db (patch)
tree133e551d3bf684ea1ccaa8a7d56a4f57b879a95a /source/blender/blenloader/intern/writefile.c
parent69d0a68f0d7ed82b9701c5a7832f609e4ea4fd75 (diff)
style cleanup: comments
Diffstat (limited to 'source/blender/blenloader/intern/writefile.c')
-rw-r--r--source/blender/blenloader/intern/writefile.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index 5a8cb2ede20..0f2990a9157 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -488,7 +488,7 @@ static void write_fmodifiers(WriteData *wd, ListBase *fmodifiers)
FMod_Python *data = (FMod_Python *)fcm->data;
/* Write ID Properties -- and copy this comment EXACTLY for easy finding
- of library blocks that implement this.*/
+ * of library blocks that implement this.*/
IDP_WriteProperty(data->prop, wd);
}
break;
@@ -1212,7 +1212,7 @@ static void write_constraints(WriteData *wd, ListBase *conlist)
writestruct(wd, DATA, "bConstraintTarget", 1, ct);
/* Write ID Properties -- and copy this comment EXACTLY for easy finding
- of library blocks that implement this.*/
+ * of library blocks that implement this.*/
IDP_WriteProperty(data->prop, wd);
}
break;
@@ -1244,7 +1244,7 @@ static void write_pose(WriteData *wd, bPose *pose)
/* Write channels */
for (chan=pose->chanbase.first; chan; chan=chan->next) {
/* Write ID Properties -- and copy this comment EXACTLY for easy finding
- of library blocks that implement this.*/
+ * of library blocks that implement this.*/
if (chan->prop)
IDP_WriteProperty(chan->prop, wd);
@@ -1417,8 +1417,8 @@ static void write_objects(WriteData *wd, ListBase *idbase)
/* write LibData */
writestruct(wd, ID_OB, "Object", 1, ob);
- /*Write ID Properties -- and copy this comment EXACTLY for easy finding
- of library blocks that implement this.*/
+ /* Write ID Properties -- and copy this comment EXACTLY for easy finding
+ * of library blocks that implement this.*/
if (ob->id.properties) IDP_WriteProperty(ob->id.properties, wd);
if (ob->adt) write_animdata(wd, ob->adt);
@@ -1678,8 +1678,8 @@ static void write_customdata(WriteData *wd, ID *id, int count, CustomData *data,
CustomData_file_write_info(layer->type, &structname, &structnum);
if (structnum) {
/* when using partial visibility, the MEdge and MFace layers
- are smaller than the original, so their type and count is
- passed to make this work */
+ * are smaller than the original, so their type and count is
+ * passed to make this work */
if (layer->type != partial_type) datasize= structnum*count;
else datasize= structnum*partial_count;
@@ -1800,10 +1800,10 @@ static void write_meshs(WriteData *wd, ListBase *idbase)
write_customdata(wd, &mesh->id, mesh->totedge, &mesh->edata, -1, 0);
write_customdata(wd, &mesh->id, mesh->totface, &mesh->fdata, -1, 0);
/* harmless for older blender versioins but _not_ writing these keeps file size down */
- /*
+#if 0
write_customdata(wd, &mesh->id, mesh->totloop, &mesh->ldata, -1, 0);
write_customdata(wd, &mesh->id, mesh->totpoly, &mesh->pdata, -1, 0);
- */
+#endif
/* restore */
mesh->mpoly = backup_mesh.mpoly;
@@ -1961,10 +1961,10 @@ static void write_materials(WriteData *wd, ListBase *idbase)
/* write LibData */
writestruct(wd, ID_MA, "Material", 1, ma);
- /*Write ID Properties -- and copy this comment EXACTLY for easy finding
- of library blocks that implement this.*/
- /*manually set head group property to IDP_GROUP, just in case it hadn't been
- set yet :) */
+ /* Write ID Properties -- and copy this comment EXACTLY for easy finding
+ * of library blocks that implement this.*/
+ /* manually set head group property to IDP_GROUP, just in case it hadn't been
+ * set yet :) */
if (ma->id.properties) IDP_WriteProperty(ma->id.properties, wd);
if (ma->adt) write_animdata(wd, ma->adt);
@@ -2468,7 +2468,7 @@ static void write_bone(WriteData *wd, Bone* bone)
writestruct(wd, DATA, "Bone", 1, bone);
/* Write ID Properties -- and copy this comment EXACTLY for easy finding
- of library blocks that implement this.*/
+ * of library blocks that implement this.*/
if (bone->prop)
IDP_WriteProperty(bone->prop, wd);