Final CCS removal cleanups.

This commit is contained in:
Jonathan Naylor 2018-09-19 20:35:31 +01:00
parent 812efd4def
commit 25f135b923
3 changed files with 4 additions and 2 deletions

View file

@ -167,6 +167,8 @@ wxString CDTMF::translate()
return processReflector(wxT("XRF"), command.Mid(1U));
else if (command.GetChar(0U) == wxT('D'))
return processReflector(wxT("DCS"), command.Mid(1U));
else
return wxEmptyString;
}
void CDTMF::reset()

View file

@ -27,7 +27,7 @@ const unsigned int CONTROL_WIDTH = 130U;
const unsigned int BORDER_SIZE = 5U;
CDCSSet::CDCSSet(wxWindow* parent, int id, const wxString& title, bool dcsEnabled) :
CDCSSet::CDCSSet(wxWindow* parent, int id, const wxString& title, bool enabled) :
wxPanel(parent, id),
m_title(title),
m_enabled(NULL)

View file

@ -23,7 +23,7 @@
class CDCSSet : public wxPanel {
public:
CDCSSet(wxWindow* parent, int id, const wxString& title, bool dcsEnabled);
CDCSSet(wxWindow* parent, int id, const wxString& title, bool enabled);
virtual ~CDCSSet();
virtual bool Validate();