update usages

This commit is contained in:
RickyRister 2026-03-04 16:46:26 -08:00
parent 7782b35f6e
commit e954ba6647
7 changed files with 17 additions and 9 deletions

View file

@ -8,7 +8,7 @@ DeckList getDeckList(const QString &clipboard)
DeckList deckList;
QString cp(clipboard);
QTextStream stream(&cp); // text stream requires local copy
deckList.loadFromStream_Plain(stream, false);
deckList.loadFromStream_Plain(stream, false, [](auto s) { return s; });
return deckList;
}