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:
authorKen Hughes <khughes@pacific.edu>2006-08-23 04:42:48 +0400
committerKen Hughes <khughes@pacific.edu>2006-08-23 04:42:48 +0400
commit7fdf88c0fe1964e71877922cee39064636a8a7e0 (patch)
treec2dc0b6bdee6d1d991f0cfbbffc093988d34207d /source/blender/src/transform_generics.c
parenta217e546a4f0e5894e958e18acbcc41425e73076 (diff)
Bugfix: structure declaration in the middle of code was breaking compilation.
Diffstat (limited to 'source/blender/src/transform_generics.c')
-rwxr-xr-xsource/blender/src/transform_generics.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/transform_generics.c b/source/blender/src/transform_generics.c
index a9dcabecb4f..f148be83be1 100755
--- a/source/blender/src/transform_generics.c
+++ b/source/blender/src/transform_generics.c
@@ -484,8 +484,9 @@ void initTrans (TransInfo *t)
/* Here I would suggest only TransInfo related issues, like free data & reset vars. Not redraws */
void postTrans (TransInfo *t)
{
+ TransData *td;
+
G.moving = 0; // Set moving flag off (display as usual)
- struct TransData *td;
#ifdef WITH_VERSE
for (td = t->data; td < t->data + t->total; td++) {
@@ -509,7 +510,6 @@ void postTrans (TransInfo *t)
/* postTrans can be called when nothing is selected, so data is NULL already */
if (t->data) {
- TransData *td;
int a;
/* since ipokeys are optional on objects, we mallocced them per trans-data */