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:
authorPeter Larabell <xgl.asyliax@gmail.com>2012-06-01 01:25:52 +0400
committerPeter Larabell <xgl.asyliax@gmail.com>2012-06-01 01:25:52 +0400
commit03ae47e45f2c9095f88e8009694d2ee97aab8563 (patch)
tree14d70e762000e2d96babeecca0d83a0a2a16ea26 /source/blender/blenlib/BLI_lasso.h
parent13714e621d654f64a2b8c6f2772ffcb0ab101dd2 (diff)
Add const prefix to match definition in lasso.c
Diffstat (limited to 'source/blender/blenlib/BLI_lasso.h')
-rw-r--r--source/blender/blenlib/BLI_lasso.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_lasso.h b/source/blender/blenlib/BLI_lasso.h
index 2360173c3b8..85a000b000c 100644
--- a/source/blender/blenlib/BLI_lasso.h
+++ b/source/blender/blenlib/BLI_lasso.h
@@ -35,7 +35,7 @@
struct rcti;
void BLI_lasso_boundbox(struct rcti *rect, int mcords[][2], short moves);
-int BLI_lasso_is_point_inside(int mcords[][2], short moves, int sx, int sy, const int error_value);
+int BLI_lasso_is_point_inside(int mcords[][2], short moves, const int sx, const int sy, const int error_value);
int BLI_lasso_is_edge_inside(int mcords[][2], short moves, int x0, int y0, int x1, int y1, const int error_value);
#endif