[apps/escher] Invocation::Action returns a bool

This commit is contained in:
Léa Saviot
2018-10-26 11:36:54 +02:00
committed by Émilie Feral
parent 91d6955ddf
commit bea78aa3b1
16 changed files with 35 additions and 11 deletions

View File

@@ -98,8 +98,10 @@ void ExpressionModelListController::editExpression(ExpressionModel * model, Ion:
InputViewController * myInputViewController = (InputViewController *)sender;
const char * textBody = myInputViewController->textBody();
myModel->setContent(textBody);
return true; // TODO we should return a result from myModel->setContent, but we will remove ExpressionModelListController soon anyway
},
[](void * context, void * sender){
return true;
});
}