Commit a23e5957 authored by Ilkka Ollakka's avatar Ilkka Ollakka

Qt4: toURI shouldn't need toNativeSeparators()

Seems like most likely cause to #4078 (reappeared near sametime as toURI was introduced).
parent 3536adcd
......@@ -28,9 +28,7 @@
QString toURI( const QString& s )
{
QString path = toNativeSeparators( s );
char *psz = make_URI( qtu(path), NULL );
char *psz = make_URI( qtu(s), NULL );
if( psz == NULL )
return qfu("");
......
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