Skip to content

Commit

Permalink
Fix lint warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
srcejon committed Dec 9, 2024
1 parent 4a8adc4 commit 107d1ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/channelrx/demoddsc/coaststations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

// Map from MMSI to Coast Station Name
// From https://www.itu.int/mmsapp/coaststation/list
QMap<QString, QString> CoastStations {
const QMap<QString, QString> CoastStations {
{"003311000", "AASIAAT RADIO"},
{"004224102", "ABADAN RADIO"},
{"004224300", "ABBAS RADIO"},
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demoddsc/coaststations.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@

#include <QMap>

extern QMap<QString, QString> CoastStations;
extern const QMap<QString, QString> CoastStations;

#endif /* INCLUDE_COASTSTATIONS_H */

0 comments on commit 107d1ee

Please sign in to comment.