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
1 changed files with 6 additions and 0 deletions

View File

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