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-02-26 17:28:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-26 17:28:29 +0300
commit10dbf6faee8d9b0f592c598c0b29008effa3b80c (patch)
treebd241e812b9ab3d6bd1a35a6a277f3264b52b0c8 /source/blender/makesdna
parentbbf6dde277a070ac82af8799376876e23dc13df1 (diff)
rename extension to addon after discussion with meta-androcto & mindrones
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index e587c45e37c..57f2ab27cc1 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -276,10 +276,10 @@ typedef struct bTheme {
} bTheme;
/* for the moment only the name. may want to store options with this later */
-typedef struct bExtension {
- struct bExtension *next, *prev;
+typedef struct bAddon {
+ struct bAddon *next, *prev;
char module[64];
-} bExtension;
+} bAddon;
typedef struct SolidLight {
int flag, pad;
@@ -327,7 +327,7 @@ typedef struct UserDef {
struct ListBase uifonts;
struct ListBase uistyles;
struct ListBase keymaps;
- struct ListBase extensions;
+ struct ListBase addons;
char keyconfigstr[64];
short undosteps;
@@ -378,7 +378,7 @@ extern UserDef U; /* from blenkernel blender.c */
#define USER_SECTION_SYSTEM 3
#define USER_SECTION_THEME 4
#define USER_SECTION_INPUT 5
-#define USER_SECTION_EXTENSIONS 6
+#define USER_SECTION_ADDONS 6
/* flag */
#define USER_AUTOSAVE (1 << 0)