~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/python/bmesh/bmesh_py_ops.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 11:24:23 UTC
  • mfrom: (14.2.23 sid)
  • Revision ID: package-import@ubuntu.com-20140219112423-rkmaz2m7ha06d4tk
Tags: 2.69-3ubuntu1
* Merge with Debian; remaining changes:
  - Configure without OpenImageIO on armhf, as it is not available on
    Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 
51
51
/* bmesh operator 'bmesh.ops.*' callable types
52
52
 * ******************************************* */
53
 
PyTypeObject bmesh_op_Type;
 
53
static PyTypeObject bmesh_op_Type;
54
54
 
55
55
static PyObject *bpy_bmesh_op_CreatePyObject(const char *opname)
56
56
{
140
140
/* Types
141
141
 * ===== */
142
142
 
143
 
PyTypeObject bmesh_op_Type = {
 
143
static PyTypeObject bmesh_op_Type = {
144
144
        PyVarObject_HEAD_INIT(NULL, 0)
145
145
        "BMeshOpFunc",              /* tp_name */
146
146
        sizeof(BPy_BMeshOpFunc),    /* tp_basicsize */