| 76 for (int column = 0; column < Rows; ++column) |
76 for (int column = 0; column < Rows; ++column) |
| 77 { |
77 { |
| 78 if (column > 0) |
78 if (column > 0) |
| 79 m_text += ", "; |
79 m_text += ", "; |
| 80 |
80 |
| 81 m_text += StringFormatArg{matrix(row, column)}.text(); |
81 m_text += StringFormatArg {matrix(row, column)}.text(); |
| 82 } |
82 } |
| 83 |
83 |
| 84 m_text += "}"; |
84 m_text += "}"; |
| 85 } |
85 } |
| |
86 m_text += "}"; |
| 86 } |
87 } |
| 87 |
88 |
| 88 inline QString text() const |
89 inline QString text() const |
| 89 { |
90 { |
| 90 return m_text; |
91 return m_text; |