GUI: Fix indentation to silence GCC 6 warning

This commit is contained in:
Torbjörn Andersson 2016-09-05 18:08:51 +02:00
parent 610aab1c63
commit d527a16e2f

View File

@ -170,10 +170,10 @@ bool DownloadDialog::selectDirectories() {
else if (localPath[i] == '\\')
++backslashes;
if (backslashes > 0)
localPath += '\\' + remoteDirectory.name();
else
localPath += '/' + remoteDirectory.name();
if (backslashes > 0)
localPath += '\\' + remoteDirectory.name();
else
localPath += '/' + remoteDirectory.name();
} else {
localPath += remoteDirectory.name();
}