Qt 5.15 compatibility

This commit is contained in:
Bill Somerville 2021-01-22 22:59:38 +00:00
parent 899a7fd895
commit 10f574a1ec
No known key found for this signature in database
GPG Key ID: D864B06D1E81618F
1 changed files with 1 additions and 3 deletions

View File

@ -3378,9 +3378,7 @@ void MainWindow::readFromStdout() //readFromStdout
int n0=n2/1000;
int n1=n2%1000;
if(m_mode=="Q65") {
QString t;
t.sprintf("%d %d",n0,n1);
ndecodes_label.setText(t);
ndecodes_label.setText(QString {"%1 %2"}.arg (n0).arg (n1));
} else {
if(m_nDecodes==0) ndecodes_label.setText("0");
}