MSYS2: fix creation of ProgressIndicatorPy
This commit is contained in:
@@ -43,6 +43,21 @@ void ProgressIndicatorPy::init_type()
|
||||
add_varargs_method("stop",&ProgressIndicatorPy::stop,"stop()");
|
||||
}
|
||||
|
||||
Py::PythonType& ProgressIndicatorPy::behaviors()
|
||||
{
|
||||
return Py::PythonExtension<ProgressIndicatorPy>::behaviors();
|
||||
}
|
||||
|
||||
PyTypeObject* ProgressIndicatorPy::type_object()
|
||||
{
|
||||
return Py::PythonExtension<ProgressIndicatorPy>::type_object();
|
||||
}
|
||||
|
||||
bool ProgressIndicatorPy::check(PyObject* p)
|
||||
{
|
||||
return Py::PythonExtension<ProgressIndicatorPy>::check(p);
|
||||
}
|
||||
|
||||
PyObject *ProgressIndicatorPy::PyMake(struct _typeobject *, PyObject *, PyObject *)
|
||||
{
|
||||
return new ProgressIndicatorPy();
|
||||
|
||||
Reference in New Issue
Block a user