MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / onEdit

Method onEdit

src/gui/NetSchedulerDialog.cpp:600–611  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

598}
599
600void NetSchedulerDialog::onEdit()
601{
602 const int row = selectedRow();
603 if (row < 0 || row >= m_entries.size())
604 return;
605 NetEntry e = m_entries.at(row);
606 if (!editNetEntry(this, e, m_capture, /*isNew=*/false))
607 return;
608 m_entries[row] = e;
609 commit();
610 m_table->setCurrentCell(row, 1);
611}
612
613void NetSchedulerDialog::onRemove()
614{

Callers

nothing calls this directly

Calls 2

editNetEntryFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected