forgot to add the registration of the Bitmap type

This commit is contained in:
Amy Bowersox 2019-12-11 10:47:45 -07:00
parent 20ed16a9ae
commit ee3df7bffc

View File

@ -81,6 +81,12 @@ PyObject *Epython_init_upiwin_module(void)
return NULL; return NULL;
} }
if (FAILED(Epython_register_bitmap(module)))
{
Py_DECREF(module);
return NULL;
}
if (FAILED(Epython_register_devctxt(module))) if (FAILED(Epython_register_devctxt(module)))
{ {
Py_DECREF(module); Py_DECREF(module);