mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-29 11:39:58 +02:00
[escher] Correct syntax error
Change-Id: Ic04ba9bdad1f0b5949c85b7c41fbf4c58688b74c
This commit is contained in:
@@ -10,7 +10,7 @@ class EditableTextCell : public TableViewCell, public Responder {
|
||||
public:
|
||||
EditableTextCell(Responder * parentResponder, TextFieldDelegate * delegate, char * draftTextBuffer,
|
||||
float horizontalAlignment = 0.0f, float verticalAlignment = 0.5f, KDColor textColor = KDColorBlack, KDColor = KDColorWhite);
|
||||
TextField * textfield();
|
||||
TextField * textField();
|
||||
void reloadCell() override;
|
||||
const char * text() const;
|
||||
void setText(const char * textContent);
|
||||
|
||||
@@ -11,7 +11,7 @@ EditableTextCell::EditableTextCell(Responder * parentResponder, TextFieldDelegat
|
||||
{
|
||||
}
|
||||
|
||||
TextField * EditableTextCell::textfield() {
|
||||
TextField * EditableTextCell::textField() {
|
||||
return &m_textField;
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ EvenOddEditableTextCell::EvenOddEditableTextCell(Responder * parentResponder, Te
|
||||
|
||||
void EvenOddEditableTextCell::reloadCell() {
|
||||
EvenOddCell::reloadCell();
|
||||
m_editableCell.textfield()->setBackgroundColor(backgroundColor());
|
||||
m_editableCell.textField()->setBackgroundColor(backgroundColor());
|
||||
}
|
||||
|
||||
const char * EvenOddEditableTextCell::text() const {
|
||||
|
||||
Reference in New Issue
Block a user