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:
parent
18373fef85
commit
d955dc4ead
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue