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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-08-06 18:35:41 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-08-06 18:35:41 +0300
commitf5f6f9c9ac3ec37ef98eae54464a801c2b7ddcc9 (patch)
treef3eed47e118770b058defd7aff0e6fbe112c76c1 /source/blender/editors/space_sequencer
parent45dcd20ca9e1f60c51e7752560b0042128740d69 (diff)
Fix broken API doc generation: Partially revert rBa372638a76e0
Making those arrays static remove them from exported symbols, which breaks API doc generation script. To be backported to 2.79 branch.
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/space_sequencer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/space_sequencer.c b/source/blender/editors/space_sequencer/space_sequencer.c
index f965c1af54a..f1d0f23f8af 100644
--- a/source/blender/editors/space_sequencer/space_sequencer.c
+++ b/source/blender/editors/space_sequencer/space_sequencer.c
@@ -435,7 +435,8 @@ static void sequencer_dropboxes(void)
/* ************* end drop *********** */
-static const char *sequencer_context_dir[] = {"edit_mask", NULL};
+/* DO NOT make this static, this hides the symbol and breaks API generation script. */
+const char *sequencer_context_dir[] = {"edit_mask", NULL};
static int sequencer_context(const bContext *C, const char *member, bContextDataResult *result)
{