[shared] Clean class names containing storage

This commit is contained in:
Émilie Feral
2019-03-12 11:41:52 +01:00
parent de41064a47
commit d0665d8558
80 changed files with 386 additions and 386 deletions

View File

@@ -0,0 +1,22 @@
#include "values_function_parameter_controller.h"
#include "function_app.h"
#include <assert.h>
namespace Shared {
const char * ValuesFunctionParameterController::title() {
return m_pageTitle;
}
void ValuesFunctionParameterController::viewWillAppear() {
FunctionApp * myApp = static_cast<FunctionApp *>(app());
myApp->functionStore()->modelForRecord(m_record)->nameWithArgument(m_pageTitle, Function::k_maxNameWithArgumentSize, m_symbol);
}
void ValuesFunctionParameterController::didBecomeFirstResponder() {
m_selectableTableView.reloadData();
selectCellAtLocation(0, 0);
app()->setFirstResponder(&m_selectableTableView);
}
}