mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
fix linux/mac build error
This commit is contained in:
parent
536041abd2
commit
e62dc91cd7
|
|
@ -196,7 +196,8 @@ bool checkLocalFileContent(FileSwitch &s)
|
|||
equal = rx.exactMatch(in.readAll());
|
||||
} else {
|
||||
QTextStream in(&file);
|
||||
equal = compareIgnoringLineEnding(in.readAll(), t);
|
||||
QString filedata = in.readAll();
|
||||
equal = compareIgnoringLineEnding(filedata, t);
|
||||
}
|
||||
file.close();
|
||||
return equal;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user