From e73d0f57a32f309433c005c06d6da2048f274c04 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 27 Apr 2014 00:21:23 +1000 Subject: Code cleanup: use 'const' for arrays (python) --- source/blender/python/intern/bpy_rna_callback.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/python/intern/bpy_rna_callback.c') diff --git a/source/blender/python/intern/bpy_rna_callback.c b/source/blender/python/intern/bpy_rna_callback.c index 9aefe5a733f..87c3a6eb4ef 100644 --- a/source/blender/python/intern/bpy_rna_callback.c +++ b/source/blender/python/intern/bpy_rna_callback.c @@ -182,8 +182,8 @@ PyObject *pyrna_callback_classmethod_add(PyObject *UNUSED(self), PyObject *args) void *handle; PyObject *cls; PyObject *cb_func, *cb_args; - char *cb_regiontype_str; - char *cb_event_str; + const char *cb_regiontype_str; + const char *cb_event_str; int cb_event; int cb_regiontype; StructRNA *srna; @@ -248,7 +248,7 @@ PyObject *pyrna_callback_classmethod_remove(PyObject *UNUSED(self), PyObject *ar void *handle; void *customdata; StructRNA *srna; - char *cb_regiontype_str; + const char *cb_regiontype_str; int cb_regiontype; if (PyTuple_GET_SIZE(args) < 2) { -- cgit v1.2.3