Files
Upsilon/apps/shared/text_field_delegate.cpp
Émilie Feral c584d1fb4e [escher] Add toolbox event handling in responder [apps] Correct the text
field delegate app accordingly

Change-Id: I180fe53aaa1e0929b357d3985f584937fba2ecca
2017-02-20 10:48:50 +01:00

16 lines
409 B
C++

#include "text_field_delegate.h"
using namespace Poincare;
namespace Shared {
bool TextFieldDelegate::textFieldDidReceiveEvent(::TextField * textField, Ion::Events::Event event) {
return textFieldDelegateApp()->textFieldDidReceiveEvent(textField, event);
}
Toolbox * TextFieldDelegate::toolboxForTextField(::TextField * textField) {
return textFieldDelegateApp()->toolboxForTextField(textField);
}
}