Code format fixes

This commit is contained in:
Jonathan White 2019-11-29 13:45:14 -05:00
parent 0423bbe168
commit 7b95867378
11 changed files with 16 additions and 17 deletions

View file

@ -71,7 +71,7 @@ bool TemporaryFile::copyFromFile(const QString& otherFileName)
}
QByteArray data;
while(!(data = otherFile.read(1024)).isEmpty()) {
while (!(data = otherFile.read(1024)).isEmpty()) {
write(data);
}