[escher] Create a class TextInput (from which derived TextField,

TextArea)
This commit is contained in:
Émilie Feral
2018-02-21 10:54:32 +01:00
committed by EmilieNumworks
parent c50e57029b
commit aade7cb2fe
24 changed files with 344 additions and 356 deletions

View File

@@ -12,8 +12,8 @@ bool TextFieldDelegate::textFieldDidReceiveEvent(::TextField * textField, Ion::E
return textFieldDelegateApp()->textFieldDidReceiveEvent(textField, event);
}
Toolbox * TextFieldDelegate::toolboxForTextField(::TextField * textField) {
return textFieldDelegateApp()->toolboxForTextField(textField);
Toolbox * TextFieldDelegate::toolboxForTextInput(TextInput * textInput) {
return textFieldDelegateApp()->toolboxForTextInput(textInput);
}
}