Qt: Fix copy/paste error in Library

This commit is contained in:
Vicki Pfau 2017-06-20 21:36:05 -07:00
parent fb7715f6ac
commit 15af266b8c
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ void AbstractGameList::addEntries(QList<LibraryEntryRef> items) {
} }
void AbstractGameList::removeEntries(QList<LibraryEntryRef> items) { void AbstractGameList::removeEntries(QList<LibraryEntryRef> items) {
for (LibraryEntryRef o : items) { for (LibraryEntryRef o : items) {
addEntry(o); removeEntry(o);
} }
} }