Skip to content

Commit

Permalink
Merge pull request #729 from atsampson/efmnull
Browse files Browse the repository at this point in the history
Fix a comparison in ld-process-efm that doesn't work with Qt 6
  • Loading branch information
happycube authored May 28, 2022
2 parents 5143756 + 68e1803 commit a6bdd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ld-process-efm/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ MainWindow::MainWindow(bool debugOn, bool _nonInteractive, QString _outputAudioF

ui->audio_padSampleStart_checkBox->setChecked(pad);

if (outputDataFilename!=NULL) {
if (outputDataFilename != "") {
ui->options_decodeAsData_checkbox->setChecked(true);
ui->tabWidget->setTabEnabled(ui->tabWidget->indexOf(ui->dataTab), true);
}
Expand Down

0 comments on commit a6bdd50

Please sign in to comment.