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:
authorAntonioya <blendergit@gmail.com>2019-04-02 14:13:23 +0300
committerAntonioya <blendergit@gmail.com>2019-04-02 14:13:23 +0300
commit60090384f52cc9b3b87455657139a208dfd0ad19 (patch)
tree519c11eeb5f64124e47e51e2344eba2d81e588ec /source/blender/editors/include
parentdbccbc51fb874b6c0f32c7bf207c208fa98b3f52 (diff)
Cleanup: Fix compiler warning
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_particle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_particle.h b/source/blender/editors/include/ED_particle.h
index 6731d878dc6..9cb0eb870ab 100644
--- a/source/blender/editors/include/ED_particle.h
+++ b/source/blender/editors/include/ED_particle.h
@@ -55,7 +55,7 @@ void PE_update_object(
/* selection tools */
bool PE_mouse_particles(struct bContext *C, const int mval[2], bool extend, bool deselect, bool toggle);
bool PE_box_select(struct bContext *C, const struct rcti *rect, const int sel_op);
-bool PE_circle_select(struct bContext *C, int sel_op, const int mval[2], float rad);
+bool PE_circle_select(struct bContext *C, const int sel_op, const int mval[2], float rad);
int PE_lasso_select(struct bContext *C, const int mcords[][2], const short moves, const int sel_op);
bool PE_deselect_all_visible_ex(struct PTCacheEdit *edit);
bool PE_deselect_all_visible(struct bContext *C);