mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[escher] Rule of 5 in view
Change-Id: Iba04e9046845b544e184530562e34f831fce96f6
This commit is contained in:
@@ -5,14 +5,14 @@ namespace Shared {
|
||||
|
||||
ListParameterController::ListParameterController(Responder * parentResponder, FunctionStore * functionStore, I18n::Message functionColorMessage, I18n::Message deleteFunctionMessage) :
|
||||
ViewController(parentResponder),
|
||||
m_selectableTableView(SelectableTableView(this, this, 0, 1, Metric::CommonTopMargin, Metric::CommonRightMargin,
|
||||
Metric::CommonBottomMargin, Metric::CommonLeftMargin, this)),
|
||||
m_selectableTableView(this, this, 0, 1, Metric::CommonTopMargin, Metric::CommonRightMargin,
|
||||
Metric::CommonBottomMargin, Metric::CommonLeftMargin, this),
|
||||
m_functionStore(functionStore),
|
||||
#if FUNCTION_COLOR_CHOICE
|
||||
m_colorCell(MessageTableCellWithChevron(functionColorMessage)),
|
||||
m_colorCell(functionColorMessage),
|
||||
#endif
|
||||
m_enableCell(MessageTableCellWithSwitch(I18n::Message::ActivateDesactivate)),
|
||||
m_deleteCell(MessageTableCell(deleteFunctionMessage))
|
||||
m_enableCell(I18n::Message::ActivateDesactivate),
|
||||
m_deleteCell(deleteFunctionMessage)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user