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:
authorKent Mein <mein@cs.umn.edu>2004-02-23 22:14:38 +0300
committerKent Mein <mein@cs.umn.edu>2004-02-23 22:14:38 +0300
commit6379637089f7534c10e9d8f1b43a487575b9a6e8 (patch)
tree7113c1a01651302c125594e4ef58993ca3d25bb9
parenta0e9208c3542609817ee6571377bfaadf26ad413 (diff)
sorry more ;'s this should be the last of them though.
Kent
-rw-r--r--source/blender/src/booleanops.c14
-rw-r--r--source/blender/src/booleanops_mesh.c7
-rw-r--r--source/blender/src/editnla.c2
-rw-r--r--source/blender/src/vpaint.c4
4 files changed, 14 insertions, 13 deletions
diff --git a/source/blender/src/booleanops.c b/source/blender/src/booleanops.c
index 683911950ee..f2ab1825c4d 100644
--- a/source/blender/src/booleanops.c
+++ b/source/blender/src/booleanops.c
@@ -99,7 +99,7 @@ VertexIt_Destruct(
iterator->Step = NULL;
iterator->num_elements = 0;
-};
+}
static
int
@@ -203,7 +203,7 @@ FaceIt_Destruct(
iterator->Reset = NULL;
iterator->Step = NULL;
iterator->num_elements = 0;
-};
+}
static
@@ -214,7 +214,7 @@ FaceIt_Done(
// assume CSG_IteratorPtr is of the correct type.
FaceIt * iterator = (FaceIt *)it;
return(iterator->pos >= iterator->mesh->totface);
-};
+}
static
void
@@ -269,7 +269,7 @@ FaceIt_Fill(
fvdata->color[3] = (float) ((tface->col[i] >> 0) & 0xff);
}
}
-};
+}
static
@@ -279,7 +279,7 @@ FaceIt_Step(
) {
FaceIt * face_it = (FaceIt *)it;
face_it->pos ++;
-};
+}
static
void
@@ -317,7 +317,7 @@ FaceIt_Construct(
output->Reset = FaceIt_Reset;
output->num_elements = it->mesh->totface;
output->it = it;
-};
+}
/**
@@ -604,7 +604,7 @@ AddNewBlenderMesh(
ob_new->type= OB_MESH;
return ob_new;
-};
+}
/**
*
diff --git a/source/blender/src/booleanops_mesh.c b/source/blender/src/booleanops_mesh.c
index 843478d06ac..152c1391d71 100644
--- a/source/blender/src/booleanops_mesh.c
+++ b/source/blender/src/booleanops_mesh.c
@@ -75,7 +75,7 @@ CSG_DestroyBlenderMeshInternals(
) {
// Free face and vertex iterators.
FreeMeshDescriptors(&(mesh->m_face_iterator),&(mesh->m_vertex_iterator));
-};
+}
static
@@ -261,7 +261,7 @@ CSG_PerformOp(
output->m_destroy_func = CSG_DestroyCSGMeshInternals;
return 1;
-};
+}
int
NewBooleanMeshTest(
@@ -303,4 +303,5 @@ NewBooleanMeshTest(
CSG_DestroyMeshDescriptor(&output3);
return 1;
-};
+}
+
diff --git a/source/blender/src/editnla.c b/source/blender/src/editnla.c
index e6674a01d64..2ea8c6370e3 100644
--- a/source/blender/src/editnla.c
+++ b/source/blender/src/editnla.c
@@ -592,7 +592,7 @@ void init_nlaspace(ScrArea *sa)
snla->v2d.keeptot= 0;
snla->lock = 0;
-};
+}
void deselect_nlachannel_keys (int test)
{
diff --git a/source/blender/src/vpaint.c b/source/blender/src/vpaint.c
index 2f8a2d7b2c2..47134631ddd 100644
--- a/source/blender/src/vpaint.c
+++ b/source/blender/src/vpaint.c
@@ -755,7 +755,7 @@ void wpaint_undo (void){
makeDispList(OBACT);
scrarea_do_windraw(curarea);
-};
+}
void copy_wpaint_undo (MDeformVert *dverts, int dcount){
if (wpaintundobuf)
@@ -764,7 +764,7 @@ void copy_wpaint_undo (MDeformVert *dverts, int dcount){
wpaintundobuf = MEM_mallocN (sizeof(MDeformVert)*dcount, "wpaintundo");
totwpaintundo = dcount;
copy_dverts (wpaintundobuf, dverts, dcount);
-};
+}
void weight_paint(void)
{