[apps] Replace app() by textFieldDelegateApp() in TextFieldDelegates

This commit is contained in:
Ruben Dashyan
2019-07-18 18:14:33 +02:00
committed by EmilieNumworks
parent 28f713e905
commit 3e992a3560
13 changed files with 35 additions and 32 deletions

View File

@@ -72,7 +72,7 @@ bool ListParameterController::textFieldDidFinishEditing(TextField * textField, c
/* -1 to take into account a double recursive sequence, which has
* SecondIndex = FirstIndex + 1 */
double floatBody;
if (app()->hasUndefinedValue(text, floatBody)) {
if (textFieldDelegateApp()->hasUndefinedValue(text, floatBody)) {
return false;
}
int index = std::round(floatBody);