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>2006-04-21 04:00:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-04-21 04:00:42 +0400
commit237030a6cae49597843c67b3b6211e7573873b20 (patch)
tree8cbc711e710553229917a7c1646c628a490b5569 /source/blender/python/api2_2x/Group.h
parent355486c83d638596b2e5dce31089791a566b16dc (diff)
Error in the header, was still refering to mesh type rather then group, didnt seem to break anything.
Diffstat (limited to 'source/blender/python/api2_2x/Group.h')
-rwxr-xr-xsource/blender/python/api2_2x/Group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Group.h b/source/blender/python/api2_2x/Group.h
index 99dfad07f0b..d4cde4d8927 100755
--- a/source/blender/python/api2_2x/Group.h
+++ b/source/blender/python/api2_2x/Group.h
@@ -40,7 +40,7 @@
extern PyTypeObject Group_Type;
extern PyTypeObject MGroupObSeq_Type;
-#define BPy_Group_Check(v) ((v)->ob_type == &Mesh_Type)
+#define BPy_Group_Check(v) ((v)->ob_type == &Group_Type)
#define BPy_MGroupObSeq_Check(v) ((v)->ob_type == &MGroupObSeq_Type)
/*****************************************************************************/