From e31d695247f89df1490afb4b9581f562fa99617c Mon Sep 17 00:00:00 2001 From: Rick Pasetto Date: Fri, 8 Jan 2010 15:11:15 -0800 Subject: get rid of commented-out code --- indra/llwindow/llwindowwin32.cpp | 54 ---------------------------------------- 1 file changed, 54 deletions(-) (limited to 'indra') diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index 439c10c95c..ed39786b37 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -2376,60 +2376,6 @@ LRESULT CALLBACK LLWindowWin32::mainWindowProc(HWND h_wnd, UINT u_msg, WPARAM w_ }; return 0; - // only useful for droppnig files - could be used for file upload dialog one day - //case WM_DROPFILES: - // { - // // HDROP contains what we need - // HDROP hdrop = (HDROP)w_param; - - // // get location in window space where drop occured and convert to OpenGL coordinate space - // POINT pt; - // DragQueryPoint( hdrop, &pt ); - // LLCoordGL gl_coord; - // LLCoordWindow cursor_coord_window( pt.x, pt.y ); - // window_imp->convertCoords(cursor_coord_window, &gl_coord); - - // // get payload (eventually, this needs to more advanced and grab size of payload dynamically - // static char file_name[ 1024 ]; - // DragQueryFileA( hdrop, 0, file_name, 1024 ); - // void* url = (void*)( file_name ); - - // // if it's a .URL or .lnk ("shortcut") file - // if ( std::string( file_name ).find( ".lnk" ) != std::string::npos || - // std::string( file_name ).find( ".URL" ) != std::string::npos ) - // { - // // read through file - looks like a 2 line file with second line URL= but who knows.. - // std::ifstream file_handle( file_name ); - // if ( file_handle.is_open() ) - // { - // std::string line; - // while ( ! file_handle.eof() ) - // { - // std::getline( file_handle, line ); - // if ( ! file_handle.eof() ) - // { - // std::string prefix( "URL=" ); - // if ( line.find( prefix, 0 ) != std::string::npos ) - // { - // line = line.substr( 4 ); // skip off the URL= bit - // strcpy( (char*)url, line.c_str() ); - // break; - // }; - // }; - // }; - // file_handle.close(); - // }; - // }; - - // MASK mask = gKeyboard->currentMask(TRUE); - - // if ( window_imp->completeDragNDropRequest( gl_coord, mask, true, (char*)url, false ) ) - // { - // return 0; - // }; - // } - - break; } -- cgit v1.2.3