rename rna OperatorTypeMacro --> OperatorMacro, since operators types are just called Operator

This commit is contained in:
2011-10-05 00:19:33 +00:00
parent 3bdadb6975
commit 3b8de8db31
3 changed files with 6 additions and 6 deletions

View File

@@ -125,7 +125,7 @@ PyObject *PYOP_wrap_macro_define(PyObject *UNUSED(self), PyObject *args)
otmacro= WM_operatortype_macro_define(ot, opname);
RNA_pointer_create(NULL, &RNA_OperatorTypeMacro, otmacro, &ptr_otmacro);
RNA_pointer_create(NULL, &RNA_OperatorMacro, otmacro, &ptr_otmacro);
return pyrna_struct_CreatePyObject(&ptr_otmacro);
}