diff options
| author | Rick Pasetto <rick@lindenlab.com> | 2009-12-03 12:19:02 -0800 |
|---|---|---|
| committer | Rick Pasetto <rick@lindenlab.com> | 2009-12-03 12:19:02 -0800 |
| commit | ff53d4ff9b497f4f0f30035d7e02e6df290db6a4 (patch) | |
| tree | 65e96cac4dc7dc8e850e34fb376a86df9accaa8b /indra/llwindow/llwindowwin32.cpp | |
| parent | 0a2a52c3b1f60668110381ef782cfa6d1088fa4e (diff) | |
Fix Windows build based on API change to handleDragNDrop()
Diffstat (limited to 'indra/llwindow/llwindowwin32.cpp')
| -rw-r--r-- | indra/llwindow/llwindowwin32.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index 78bc3b9c58..dc1e2c017c 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -3581,9 +3581,9 @@ static LLWString find_context(const LLWString & wtext, S32 focus, S32 focus_leng // final stage of handling drop requests - both from WM_DROPFILES message
// for files and via IDropTarget interface requests.
-BOOL LLWindowWin32::completeDragNDropRequest( const LLCoordGL gl_coord, const MASK mask, BOOL drop, const std::string url, BOOL is_slurl )
+BOOL LLWindowWin32::completeDragNDropRequest( const LLCoordGL gl_coord, const MASK mask, BOOL drop, const std::string url )
{
- return mCallbacks->handleDragNDrop( this, gl_coord, mask, drop, url, is_slurl );
+ return mCallbacks->handleDragNDrop( this, gl_coord, mask, drop, url );
}
// Handle WM_IME_REQUEST message.
|
