[poincare] Rename ParenthesisLeftLayout into LeftParenthesisLayout

Change-Id: Iaedd556ce912d650432d395b294c39e53bfc16a0
This commit is contained in:
Léa Saviot
2018-04-19 15:13:20 +02:00
parent 16fa9a0975
commit e4dccc8cc1
9 changed files with 23 additions and 23 deletions

View File

@@ -171,7 +171,7 @@ void ExpressionLayoutCursor::insertText(const char * text) {
ExpressionLayout * pointedChild = nullptr;
for (int i = 0; i < textLength; i++) {
if (text[i] == '(') {
newChild = new ParenthesisLeftLayout();
newChild = new LeftParenthesisLayout();
if (pointedChild == nullptr) {
pointedChild = newChild;
}