* Writes string to file and appends a 'newline' string. See SetNewLine method. * * @param line IString to be written to file. Defaults to "" */
| 506 | * @param line IString to be written to file. Defaults to "" |
| 507 | */ |
| 508 | void TextFile::PutLine(const QString &line) { |
| 509 | PutLine(line.toLatin1().data()); |
| 510 | } |
| 511 | |
| 512 | /** |
| 513 | * Writes char string to file and appends a 'newline' string. |