Commit e607973a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

skins2: assume Unicode filesystem on Windows

parent 28caaf85
......@@ -146,10 +146,6 @@ STDMETHODIMP Win32DragDrop::Drop( LPDATAOBJECT pDataObj, DWORD grfKeyState,
void Win32DragDrop::HandleDrop( HDROP HDrop )
{
if( GetVersion() < 0x80000000 )
{
// Use Unicode for Windows NT and above
// Get the number of dropped files
int nbFiles = DragQueryFileW( HDrop, 0xFFFFFFFF, NULL, 0 );
......@@ -167,23 +163,6 @@ void Win32DragDrop::HandleDrop( HDROP HDrop )
delete[] psz_fileName;
}
}
else
{
int nbFiles = DragQueryFile( HDrop, 0xFFFFFFFF, NULL, 0 );
for( int i = 0; i < nbFiles; i++ )
{
int nameLength = DragQueryFile( HDrop, i, NULL, 0 ) + 1;
char *psz_fileName = new char[nameLength];
DragQueryFile( HDrop, i, psz_fileName, nameLength );
CmdAddItem cmd(getIntf(),sFromLocale(psz_fileName),m_playOnDrop);
cmd.execute();
delete[] psz_fileName;
}
}
DragFinish( HDrop );
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment