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:
authorAndrea Weikert <elubie@gmx.net>2009-01-06 18:58:37 +0300
committerAndrea Weikert <elubie@gmx.net>2009-01-06 18:58:37 +0300
commit7e7fff7f639419ed6c0084c96b0c1dc9a13c83b0 (patch)
treef2d9b74c4d1baaeb86f4564573cda53bee2ac61b /source/blender/editors/space_file/file_ops.c
parentb1cb844e0539376cb41cd15bf802aea62848b90a (diff)
2.5
fix wrong parameter list, I should have read those warnings a bit better!
Diffstat (limited to 'source/blender/editors/space_file/file_ops.c')
-rw-r--r--source/blender/editors/space_file/file_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c
index 2d1617d03a3..d2f2b3d5919 100644
--- a/source/blender/editors/space_file/file_ops.c
+++ b/source/blender/editors/space_file/file_ops.c
@@ -223,7 +223,7 @@ static int file_select_invoke(bContext *C, wmOperator *op, wmEvent *event)
mval[0]= event->x - ar->winrct.xmin;
mval[1]= event->y - ar->winrct.ymin;
mouse_select(sfile, sfile->params, ar, mval);
- WM_event_add_notifier(C, NC_WINDOW, 0, NULL);
+ WM_event_add_notifier(C, NC_WINDOW, NULL);
return OPERATOR_FINISHED;
}