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:
authorJacques Lucke <jacques@blender.org>2020-09-09 12:10:38 +0300
committerJacques Lucke <jacques@blender.org>2020-09-09 12:10:38 +0300
commit377a1e3d7b7f108c5feff24dc2adb5ef7c402989 (patch)
treebd8090d08ba3abfe7952e001e99625fe77713301 /source/blender/editors/include/ED_gpencil.h
parent916497627ce07318bb9bc82aabcb42af9561c560 (diff)
Cleanup: use bool instead of int
Diffstat (limited to 'source/blender/editors/include/ED_gpencil.h')
-rw-r--r--source/blender/editors/include/ED_gpencil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_gpencil.h b/source/blender/editors/include/ED_gpencil.h
index 06839276027..398a1630cf6 100644
--- a/source/blender/editors/include/ED_gpencil.h
+++ b/source/blender/editors/include/ED_gpencil.h
@@ -176,7 +176,7 @@ void ED_annotation_draw_ex(struct Scene *scene,
/* ----------- Grease-Pencil AnimEdit API ------------------ */
bool ED_gpencil_layer_frames_looper(struct bGPDlayer *gpl,
struct Scene *scene,
- short (*gpf_cb)(struct bGPDframe *, struct Scene *));
+ bool (*gpf_cb)(struct bGPDframe *, struct Scene *));
void ED_gpencil_layer_make_cfra_list(struct bGPDlayer *gpl, ListBase *elems, bool onlysel);
bool ED_gpencil_layer_frame_select_check(struct bGPDlayer *gpl);