| 91 | } |
| 92 | |
| 93 | STRING ParagraphModel::ToString() const { |
| 94 | char buffer[200]; |
| 95 | const STRING &alignment = ParagraphJustificationToString(justification_); |
| 96 | snprintf(buffer, sizeof(buffer), |
| 97 | "margin: %d, first_indent: %d, body_indent: %d, alignment: %s", |
| 98 | margin_, first_indent_, body_indent_, alignment.string()); |
| 99 | return STRING(buffer); |
| 100 | } |
no test coverage detected