[escher] Correct syntax error

Change-Id: Ic04ba9bdad1f0b5949c85b7c41fbf4c58688b74c
This commit is contained in:
Émilie Feral
2016-12-20 10:04:42 +01:00
parent 59347f0c84
commit 9eb65a374b
3 changed files with 3 additions and 3 deletions

View File

@@ -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);

View File

@@ -11,7 +11,7 @@ EditableTextCell::EditableTextCell(Responder * parentResponder, TextFieldDelegat
{
}
TextField * EditableTextCell::textfield() {
TextField * EditableTextCell::textField() {
return &m_textField;
}

View File

@@ -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 {