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>2010-10-04 00:00:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-04 00:00:22 +0400
commitab8aa13b829c9a49b60294883613d6b4bf33f835 (patch)
tree9093a60747dffbd33747dfb50b36234f7f75b624 /source/blender/python/generic/bpy_internal_import.h
parent3e3e10668e501f516b0193763c753fbe9d2e7af4 (diff)
bugfix [#24087] Blender can not install add-ons unless running with root priviledges
now addon path is created using the same path functions and selecting where to save the startup.blend also made some minor changes to path handling funcs.
Diffstat (limited to 'source/blender/python/generic/bpy_internal_import.h')
-rw-r--r--source/blender/python/generic/bpy_internal_import.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/generic/bpy_internal_import.h b/source/blender/python/generic/bpy_internal_import.h
index 09e1fa629d3..f191ab22651 100644
--- a/source/blender/python/generic/bpy_internal_import.h
+++ b/source/blender/python/generic/bpy_internal_import.h
@@ -53,8 +53,8 @@ PyObject* bpy_text_reimport( PyObject *module, int *found );
void bpy_text_filename_get(char *fn, struct Text *text);
-extern PyMethodDef bpy_import_meth[];
-extern PyMethodDef bpy_reload_meth[];
+extern PyMethodDef bpy_import_meth;
+extern PyMethodDef bpy_reload_meth;
/* The game engine has its own Main struct, if this is set search this rather then G.main */
struct Main *bpy_import_main_get(void);