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:
authorSergey Sharybin <sergey@blender.org>2022-11-09 11:47:24 +0300
committerSergey Sharybin <sergey@blender.org>2022-11-09 11:47:24 +0300
commit59e69fc2bd3b6f06f179d77acca7634968d15969 (patch)
tree836ac28d359f1408f53d9767ed94e03c133bc1b7
parentaba0d01b781addf712443c525f3343279b40e323 (diff)
Fix strict compiler warnings
Functions which are local to a translation unit should either be marked as static, or be in an anonymous namespace.
-rw-r--r--source/blender/editors/space_graph/graph_edit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c
index c605ba6776f..cb01b0d9dc8 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -2333,7 +2333,7 @@ static int graphkeys_snap_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-bool graph_has_selected_control_points(struct bContext *C)
+static bool graph_has_selected_control_points(struct bContext *C)
{
bAnimContext ac;
ListBase anim_data = {NULL, NULL};
@@ -2363,9 +2363,9 @@ bool graph_has_selected_control_points(struct bContext *C)
return has_selected_control_points;
}
-int graphkeys_selected_control_points_invoke(struct bContext *C,
- struct wmOperator *op,
- const struct wmEvent *event)
+static int graphkeys_selected_control_points_invoke(struct bContext *C,
+ struct wmOperator *op,
+ const struct wmEvent *event)
{
if (!graph_has_selected_control_points(C)) {
BKE_report(op->reports, RPT_ERROR, "No control points are selected");