From 0fcd2a90f6680e37242be07404a6c3b1c5b02f6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Wed, 11 Apr 2018 17:11:05 +0200 Subject: [PATCH] [apps] Fix comment aesthetics Change-Id: I3e91391f0751515efe50ec4e4335a2421f2acbee --- apps/sequence/list/sequence_toolbox.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/sequence/list/sequence_toolbox.cpp b/apps/sequence/list/sequence_toolbox.cpp index 04509ceb0..08d67f4fd 100644 --- a/apps/sequence/list/sequence_toolbox.cpp +++ b/apps/sequence/list/sequence_toolbox.cpp @@ -115,10 +115,10 @@ bool SequenceToolbox::selectAddedCell(int selectedRow){ char buffer[bufferSize]; m_addedCellLayout[selectedRow]->writeTextInBuffer(buffer, bufferSize); if (m_action == MathToolbox::actionForTextInput) { - // DIRTY. The symbols are layouted using a Subscript VerticalOffsetLayout, - // which serializes into "_{}", but we want parentheses for text fields. We - // thus need to remove any underscores, and changes brackets into - // parentheses. + /* DIRTY. The symbols are layouted using a Subscript VerticalOffsetLayout, + * which serializes into "_{}", but we want parentheses for text fields. We + * thus need to remove any underscores, and changes brackets into + * parentheses. */ for (int i = 0; i < bufferSize; i++) { if (buffer[i] == '{') { buffer[i] = '(';