mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-03 09:44:01 -05:00
Fix gcc warnings and markdown
This commit is contained in:
parent
0a0bcffc04
commit
2ef53d3354
@ -511,6 +511,9 @@ QVariant AirspaceModel::data(const QModelIndex &index, int role) const
|
||||
|
||||
bool AirspaceModel::setData(const QModelIndex &index, const QVariant& value, int role)
|
||||
{
|
||||
(void) value;
|
||||
(void) role;
|
||||
|
||||
int row = index.row();
|
||||
if ((row < 0) || (row >= m_airspaces.count())) {
|
||||
return false;
|
||||
|
@ -98,7 +98,7 @@ When clicked, flight information (departure and arrival airport and times) is do
|
||||
To be able to use this, a callsign for the highlighted aircraft must have been received. Also, the callsign must be mappable to a flight number, which is not always possible (this is typically
|
||||
the case for callsigns that end in two characters, as for these, some digits from the flight number will have been omitted).
|
||||
|
||||
To use this feature, an (aviationstack)[aviationstack.com] API Key must be entered in the Display Settings dialog (12). A free key giving 500 API calls per month is (available)[https://aviationstack.com/product].
|
||||
To use this feature, an [aviationstack](https://aviationstack.com) API Key must be entered in the Display Settings dialog (12). A free key giving 500 API calls per month is [available](https://aviationstack.com/product).
|
||||
|
||||
<h3>16: Feed</h3>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user