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>2020-12-16 08:12:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-12-16 08:12:50 +0300
commit87fdb714383326255fa656809d637403b9bb2adb (patch)
treecba36a90a225f64d33369eec31c6f533074d46e3 /source/blender/editors/space_outliner
parent977bd7937a07a5cbb269c1cda6e95ef0931a0704 (diff)
Cleanup: use static declarations
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_context.c b/source/blender/editors/space_outliner/outliner_context.c
index e7dc2780c37..a314a640e42 100644
--- a/source/blender/editors/space_outliner/outliner_context.c
+++ b/source/blender/editors/space_outliner/outliner_context.c
@@ -50,7 +50,7 @@ static void outliner_context_selected_ids(const SpaceOutliner *space_outliner,
CTX_data_type_set(result, CTX_DATA_TYPE_COLLECTION);
}
-const char *outliner_context_dir[] = {"selected_ids", NULL};
+static const char *outliner_context_dir[] = {"selected_ids", NULL};
int /*eContextResult*/ outliner_context(const bContext *C,
const char *member,