[poincare] Rename BracketRight/LeftLayout -> Right/LeftBracketLayout.

Change-Id: I382ac960aeca861d1003cd2373709a6759ded685
This commit is contained in:
Léa Saviot
2018-04-19 16:13:32 +02:00
parent a2f2a64bbd
commit 72f6946b14
7 changed files with 20 additions and 20 deletions

View File

@@ -183,9 +183,9 @@ void ExpressionLayoutCursor::insertText(const char * text) {
* binary file 2K. */
#if 0
else if (text[i] == '[') {
newChild = new BracketLeftLayout();
newChild = new LeftBracketLayout();
} else if (text[i] == ']') {
newChild = new BracketRightLayout();
newChild = new RightBracketLayout();
}
#endif
else {