Skip to content

Commit

Permalink
Merge branch 'ms-request-qsy' into ms-rel-v1812
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Jun 25, 2023
2 parents 9f2fdce + b2ed6f4 commit 20191a9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/freedv_reporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ FreeDVReporterDialog::FreeDVReporterDialog(wxWindow* parent, wxWindowID id, cons
// Main list box
// =============================
m_listSpots = new wxListView(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_SINGLE_SEL | wxLC_REPORT | wxLC_HRULES);
m_listSpots->InsertColumn(0, wxT("Callsign"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(1, wxT("Grid Square"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(2, wxT("Version"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(3, wxT("Frequency"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(4, wxT("Status"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(5, wxT("TX Mode"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(6, wxT("Last TX"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(7, wxT("Last RX Callsign"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(8, wxT("Last RX Mode"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(9, wxT("SNR"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(10, wxT("Last Update"), wxLIST_FORMAT_CENTER);
m_listSpots->InsertColumn(0, wxT("Callsign"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(1, wxT("Grid Square"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(2, wxT("Version"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(3, wxT("Frequency"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(4, wxT("Status"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(5, wxT("TX Mode"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(6, wxT("Last TX"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(7, wxT("Last RX Callsign"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(8, wxT("Last RX Mode"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(9, wxT("SNR"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);
m_listSpots->InsertColumn(10, wxT("Last Update"), wxLIST_FORMAT_CENTER, wxLIST_AUTOSIZE_USEHEADER);

sectionSizer->Add(m_listSpots, 0, wxALL | wxEXPAND, 2);

Expand Down

0 comments on commit 20191a9

Please sign in to comment.