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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-12-30 10:32:14 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-12-30 10:32:14 +0300
commitd6e8cd42325d763b65219c6652343a4a4c3a7489 (patch)
tree32e003dbc711302d3003560c9874f8312a0300fe /source/blender/editors/space_view3d/view3d_select.c
parent090807066c58943a817eaea74d7358534fad5070 (diff)
2.5: fix compile error on mac, and a few warnings.
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_select.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_select.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c
index 6464ed48b06..a06fb5a6741 100644
--- a/source/blender/editors/space_view3d/view3d_select.c
+++ b/source/blender/editors/space_view3d/view3d_select.c
@@ -854,7 +854,6 @@ static void mouse_select(bContext *C, short *mval, short modifier)
unsigned int buffer[4*MAXPICKBUF];
int temp, a, dist=100;
short hits;
- short ctrl=0, shift=0, alt=0;
/* always start list from basact in wire mode */
startbase= FIRSTBASE;
@@ -1443,7 +1442,7 @@ static int view3d_select_invoke(bContext *C, wmOperator *op, wmEvent *event)
view3d_operator_needs_opengl(C);
- mouse_select(C, mval, NULL);
+ mouse_select(C, mval, 0);
return OPERATOR_FINISHED;
}