mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-06-25 06:35:17 -04:00
Fix a compilation error on Mac M1 (patch by Alex, K6LOT).
This commit is contained in:
parent
06d1469c10
commit
a3a02a8996
@ -1335,8 +1335,10 @@ FrequencyList_v2_101::FrequencyItems FrequencyList_v2_101::from_json_file(QFile
|
|||||||
{
|
{
|
||||||
throw ReadFileException{tr ("No Frequencies were found")};
|
throw ReadFileException{tr ("No Frequencies were found")};
|
||||||
}
|
}
|
||||||
int valid_entry_count [[maybe_unused]] = 0;
|
#ifdef DUMP_ENTRY_COUNTS
|
||||||
int skipped_entry_count [[maybe_unused]] = 0;
|
int valid_entry_count = 0;
|
||||||
|
int skipped_entry_count = 0;
|
||||||
|
#endif
|
||||||
for (auto const &item: arr)
|
for (auto const &item: arr)
|
||||||
{
|
{
|
||||||
QString mode_s, region_s;
|
QString mode_s, region_s;
|
||||||
@ -1359,13 +1361,21 @@ FrequencyList_v2_101::FrequencyItems FrequencyList_v2_101::from_json_file(QFile
|
|||||||
freq.isSane())
|
freq.isSane())
|
||||||
{
|
{
|
||||||
list.push_back(freq);
|
list.push_back(freq);
|
||||||
|
#ifdef DUMP_ENTRY_COUNTS
|
||||||
valid_entry_count++;
|
valid_entry_count++;
|
||||||
} else
|
#endif
|
||||||
|
} else {
|
||||||
|
#ifdef DUMP_ENTRY_COUNTS
|
||||||
skipped_entry_count++;
|
skipped_entry_count++;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//MessageBox::information_message(this, tr("Loaded Frequencies from %1").arg(file_name),
|
|
||||||
// tr("Entries Valid/Skipped %1").arg(QString::number(valid_entry_count) + "/" +
|
#ifdef DUMP_ENTRY_COUNTS
|
||||||
// QString::number(skipped_entry_count)));
|
MessageBox::information_message(this, tr("Loaded Frequencies from %1").arg(file_name),
|
||||||
|
tr("Entries Valid/Skipped %1").arg(QString::number(valid_entry_count) + "/" +
|
||||||
|
QString::number(skipped_entry_count)));
|
||||||
|
#endif
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
// write JSON format to a file
|
// write JSON format to a file
|
||||||
|
Loading…
x
Reference in New Issue
Block a user