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>2011-10-03 05:36:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-03 05:36:25 +0400
commitb001eeb10deed53ea763f39de718b3558f5f0326 (patch)
treeea2b104385891c754411ffb185ccaafdc628624e /source/blender/makesrna/RNA_types.h
parentf87ab2e907823754685bb22d45c62c2734721fa4 (diff)
Change struct alignment for structs which are intended to be aligned but aren't.
remove uiIconImage too since its unused.
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index 8e8a2133b89..4e1177996ef 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -230,8 +230,8 @@ typedef struct CollectionPropertyIterator {
int level;
/* external */
- int valid;
PointerRNA ptr;
+ int valid;
} CollectionPropertyIterator;
typedef struct CollectionPointerLink {
@@ -274,13 +274,13 @@ typedef struct ParameterList {
/* storage for parameters */
void *data;
+ /* function passed at creation time */
+ struct FunctionRNA *func;
+
/* store the parameter size */
int alloc_size;
int arg_count, ret_count;
-
- /* function passed at creation time */
- struct FunctionRNA *func;
} ParameterList;
typedef struct ParameterIterator {