+ // sometimes the syntax is "file:filename", sometimes it's
+ // URL-like: "file://filename" - deal with both
+ if ( filename[lenPrefix] == _T('/') &&
+ filename[lenPrefix + 1] == _T('/') )
+ {
+ // skip the slashes
+ lenPrefix += 2;
+ }
+
+ AddFile(wxURI::Unescape(filename.c_str() + lenPrefix));
+ filename.Empty();
+ }
+ else if ( !filename.empty() )
+ {
+ wxLogDebug(_T("Unsupported URI \"%s\" in wxFileDataObject"),
+ filename.c_str());