Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-10-22 09:37:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-10-22 09:38:48 +0300
commitb5f77973a762b897892a39230095943f23a7f9c6 (patch)
tree217b32d657b609d3e6195f39fbf47282f86ab4ee /source/blender/python/generic/py_capi_utils.h
parent6f779218fb6d04d5493cf8aff6884ebe18ffdc1e (diff)
Cleanup: remove BLI_dynstr use in py_capi_utils
Needed for standalone mathutils module.
Diffstat (limited to 'source/blender/python/generic/py_capi_utils.h')
-rw-r--r--source/blender/python/generic/py_capi_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/py_capi_utils.h b/source/blender/python/generic/py_capi_utils.h
index 1f552c3d78d..5be44ad1af6 100644
--- a/source/blender/python/generic/py_capi_utils.h
+++ b/source/blender/python/generic/py_capi_utils.h
@@ -99,7 +99,7 @@ typedef struct PyC_FlagSet {
const char *identifier;
} PyC_FlagSet;
-char *PyC_FlagSet_AsString(PyC_FlagSet *item);
+PyObject *PyC_FlagSet_AsString(PyC_FlagSet *item);
int PyC_FlagSet_ValueFromID_int(PyC_FlagSet *item, const char *identifier, int *r_value);
int PyC_FlagSet_ValueFromID(PyC_FlagSet *item,
const char *identifier,