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-12-31 06:37:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-31 06:37:28 +0400
commit1aebc0e790c4abe4bdb749fbaad051d1e6c53586 (patch)
treef327c916904ff07cbbf6fd7462768a16aff3c58e /source/blender/makesrna/intern/rna_object.c
parentb3aa368c8f43e6ea2bb1423e844645f583a54a94 (diff)
style cleanup
Diffstat (limited to 'source/blender/makesrna/intern/rna_object.c')
-rw-r--r--source/blender/makesrna/intern/rna_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index 6e81e866118..80d74c3a9fe 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -1439,7 +1439,7 @@ int rna_DupliObject_index_get(PointerRNA *ptr)
int rna_Object_use_dynamic_topology_sculpting_get(PointerRNA *ptr)
{
- SculptSession *ss = ((Object*)ptr->id.data)->sculpt;
+ SculptSession *ss = ((Object *)ptr->id.data)->sculpt;
return (ss && ss->bm);
}