Cleanup: use const EnumPropertyItem pointers

This commit is contained in:
Campbell Barton
2024-04-08 12:03:03 +10:00
parent 01187dfc8e
commit bce2cf5f92
9 changed files with 14 additions and 14 deletions

View File

@@ -512,7 +512,7 @@ PyDoc_STRVAR(
static PyObject *app_translations_locales_get(PyObject * /*self*/, void * /*userdata*/)
{
PyObject *ret;
EnumPropertyItem *it, *items = BLT_lang_RNA_enum_properties();
const EnumPropertyItem *it, *items = BLT_lang_RNA_enum_properties();
int num_locales = 0, pos = 0;
if (items) {