Page Menu
Home
Search
Configure Global Search
Log In
Files
F1070
patch-vector
Public
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Authored By
Ken Hughes (khughes)
Nov 13 2013, 12:53 PM
Size
2 KB
Subscribers
None
patch-vector
View Options
Index: source/blender/python/api2_2x/vector.c
===================================================================
RCS file: /cvsroot/bf-blender/blender/source/blender/python/api2_2x/vector.c,v
retrieving revision 1.29
diff -u -r1.29 vector.c
--- source/blender/python/api2_2x/vector.c 11 Aug 2005 16:39:51 -0000 1.29
+++ source/blender/python/api2_2x/vector.c 8 Sep 2005 23:39:02 -0000
@@ -671,7 +671,7 @@
}else{ //bad type
return NULL;
}
- return (PyObject *) EXPP_incr_ret((PyObject *)self);
+ return (PyObject *) self;
}
//#############################DEPRECATED################################
Index: source/blender/python/api2_2x/quat.c
===================================================================
RCS file: /cvsroot/bf-blender/blender/source/blender/python/api2_2x/quat.c,v
retrieving revision 1.15
diff -u -r1.15 quat.c
--- source/blender/python/api2_2x/quat.c 23 Jul 2005 13:46:40 -0000 1.15
+++ source/blender/python/api2_2x/quat.c 8 Sep 2005 23:39:02 -0000
@@ -587,5 +587,5 @@
}else{ //bad type
return NULL;
}
- return (PyObject *) EXPP_incr_ret((PyObject *)self);
+ return (PyObject *) self;
}
Index: source/blender/python/api2_2x/euler.c
===================================================================
RCS file: /cvsroot/bf-blender/blender/source/blender/python/api2_2x/euler.c,v
retrieving revision 1.12
diff -u -r1.12 euler.c
--- source/blender/python/api2_2x/euler.c 23 Jul 2005 13:46:39 -0000 1.12
+++ source/blender/python/api2_2x/euler.c 8 Sep 2005 23:39:03 -0000
@@ -410,6 +410,6 @@
}else{ //bad type
return NULL;
}
- return (PyObject *) EXPP_incr_ret((PyObject *)self);
+ return (PyObject *) self;
}
Index: source/blender/python/api2_2x/point.c
===================================================================
RCS file: /cvsroot/bf-blender/blender/source/blender/python/api2_2x/point.c,v
retrieving revision 1.2
diff -u -r1.2 point.c
--- source/blender/python/api2_2x/point.c 26 Jul 2005 13:30:08 -0000 1.2
+++ source/blender/python/api2_2x/point.c 8 Sep 2005 23:39:07 -0000
@@ -539,5 +539,5 @@
}else{ //bad type
return NULL;
}
- return (PyObject *) EXPP_incr_ret((PyObject *)self);
+ return (PyObject *) self;
}
Index: source/blender/python/api2_2x/matrix.c
===================================================================
RCS file: /cvsroot/bf-blender/blender/source/blender/python/api2_2x/matrix.c,v
retrieving revision 1.25
diff -u -r1.25 matrix.c
--- source/blender/python/api2_2x/matrix.c 23 Jul 2005 13:46:39 -0000 1.25
+++ source/blender/python/api2_2x/matrix.c 8 Sep 2005 23:39:12 -0000
@@ -837,5 +837,5 @@
}else{ //bad type
return NULL;
}
- return (PyObject *) EXPP_incr_ret((PyObject *)self);
+ return (PyObject *) self;
}
File Metadata
Details
Mime Type
text/x-diff
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
8b/9f/cb4fb22c7391ef3cb0dc8c76181c
Event Timeline
Log In to Comment