From 51dcbdde033f6e8e55c4b1b4a47ca0624a6571ee Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 17 Nov 2010 09:45:45 +0000 Subject: use 'const char *' by default with RNA functions except when the value is flagged as PROP_THICK_WRAP. Also use const char in many other parts of blenders code. Currently this gives warnings for setting operator id, label and description since these are an exception and allocated beforehand. --- source/blender/python/intern/stubs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/intern/stubs.c') diff --git a/source/blender/python/intern/stubs.c b/source/blender/python/intern/stubs.c index d6dc5059342..ee124e2c06f 100644 --- a/source/blender/python/intern/stubs.c +++ b/source/blender/python/intern/stubs.c @@ -29,7 +29,7 @@ /* python, will come back */ //void BPY_run_python_script() {} //void BPY_start_python() {} -void BPY_call_importloader() {} +void BPY_call_importloader(const char *filepath) {(void)filepath;} //void BPY_free_compiled_text() {} void BPY_pyconstraint_eval() {} void BPY_pyconstraint_target() {} -- cgit v1.2.3