mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-21 10:45:24 -04:00
Fix C++03 compatibility
This commit is contained in:
parent
ce8e8c31f8
commit
f9b174f78b
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ UINT8 UEFIPatch::patchFromArg(const QString & path, const QString & patch, const
|
||||||
if (result)
|
if (result)
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
if (patch != nullptr && !patch.isEmpty()) {
|
if (patch != NULL && !patch.isEmpty()) {
|
||||||
QByteArray line = patch.toUtf8();
|
QByteArray line = patch.toUtf8();
|
||||||
|
|
||||||
QList<QByteArray> list = line.split(' ');
|
QList<QByteArray> list = line.split(' ');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue