mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 16:08:39 -05:00
Remove unused function
This commit is contained in:
parent
df7b763eab
commit
63cba7e7d8
@ -549,17 +549,6 @@ void MapGUI::foF2Updated(const QJsonDocument& document)
|
||||
}
|
||||
}
|
||||
|
||||
static QString arrayToString(QJsonArray array)
|
||||
{
|
||||
QString s;
|
||||
for (int i = 0; i < array.size(); i++)
|
||||
{
|
||||
s = s.append(array[i].toString());
|
||||
s = s.append(" ");
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
void MapGUI::addBroadcast()
|
||||
{
|
||||
QFile file(":/map/data/transmitters.csv");
|
||||
@ -663,8 +652,20 @@ void MapGUI::addBroadcast()
|
||||
}
|
||||
}
|
||||
|
||||
// Coming soon
|
||||
/* Code for FM list / DAB list, should they allow access
|
||||
/*
|
||||
|
||||
static QString arrayToString(QJsonArray array)
|
||||
{
|
||||
QString s;
|
||||
for (int i = 0; i < array.size(); i++)
|
||||
{
|
||||
s = s.append(array[i].toString());
|
||||
s = s.append(" ");
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
// Code for FM list / DAB list, should they allow access
|
||||
void MapGUI::addDAB()
|
||||
{
|
||||
QFile file("stationlist_SI.json");
|
||||
|
Loading…
Reference in New Issue
Block a user