1
0
Fork 0
forked from len0rd/rockbox

Rockbox Utility: fix some names missing from the CREDITS.

The regexp used when displaying the names didn't take into account that names
could start with non-ASCII letters. Use a different approach when filtering the
header to make them not disappear.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29803 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2011-04-30 21:09:15 +00:00
parent 18373fef85
commit d955dc4ead

View file

@ -287,7 +287,7 @@ void RbUtilQt::about()
while(!r.atEnd()) {
QString line = r.readLine();
// filter out header.
line.remove(QRegExp("^[^A-Z]+.*"));
line.remove(QRegExp("^ +.*"));
line.remove(QRegExp("^People.*"));
about.browserCredits->append(line);
}