equal
deleted
inserted
replaced
353 QTextStream stream(&txt); |
353 QTextStream stream(&txt); |
354 stream.setCodec("UTF-8"); |
354 stream.setCodec("UTF-8"); |
355 |
355 |
356 stream << "; this list is used by Hedgewars - do not edit it unless you know " |
356 stream << "; this list is used by Hedgewars - do not edit it unless you know " |
357 "what you're doing!" |
357 "what you're doing!" |
358 << endl; |
358 << Qt::endl; |
359 |
359 |
360 foreach (const QString &nick, set.values()) |
360 foreach (const QString &nick, set.values()) |
361 stream << nick << endl; |
361 stream << nick << Qt::endl; |
362 |
362 |
363 txt.close(); |
363 txt.close(); |
364 } |
364 } |