mirror of
https://github.com/EdgeTX/edgetx.git
synced 2025-07-23 16:25:12 +03:00
Fix compile for QT 5.7
This commit is contained in:
parent
f8e7b3685d
commit
f69f36e7cb
1 changed files with 2 additions and 2 deletions
|
@ -222,9 +222,9 @@ void FlashEEpromDialog::on_burnButton_clicked()
|
|||
Storage storage(eepromFilename);
|
||||
if (storage.load(*radioData)) {
|
||||
if (ui->patchCalibration->isChecked())
|
||||
patch |= patchCalibration(radioData.get());
|
||||
patch |= patchCalibration(radioData.data());
|
||||
if (ui->patchHardwareSettings->isChecked())
|
||||
patch |= patchHardwareSettings(radioData.get());
|
||||
patch |= patchHardwareSettings(radioData.data());
|
||||
}
|
||||
|
||||
if (patch) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue