diff options
author | James Cook <james@lindenlab.com> | 2009-12-13 21:43:28 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-12-13 21:43:28 -0800 |
commit | 76f062f1fe82d2b19938601800aae3105da7ad7a (patch) | |
tree | 4e6ababbf6dc08042d9c72fa21b045e25009b006 /indra/newview | |
parent | 19d9cf8d8e4e195d83f9f67ced515bd6bd4566ed (diff) |
Fix Mac build
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index 6028819127..966aeba25c 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -3150,7 +3150,8 @@ void LLViewerWindow::pickAsync(S32 x, S32 y_from_bot, MASK mask, void (*callback pick_transparent = TRUE; } - schedulePick(LLPickInfo(LLCoordGL(x, y_from_bot), mask, pick_transparent, TRUE, callback)); + LLPickInfo pick_info(LLCoordGL(x, y_from_bot), mask, pick_transparent, TRUE, callback); + schedulePick(pick_info); } void LLViewerWindow::schedulePick(LLPickInfo& pick_info) |