From 06f0d8ac69ca0a1e421074cd460b96d6a53ddd33 Mon Sep 17 00:00:00 2001 From: RickyRister Date: Sun, 16 Mar 2025 00:39:23 -0700 Subject: [PATCH] fix build failures --- tests/loading_from_clipboard/clipboard_testing.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/loading_from_clipboard/clipboard_testing.cpp b/tests/loading_from_clipboard/clipboard_testing.cpp index b9093364a..ad8db3dbf 100644 --- a/tests/loading_from_clipboard/clipboard_testing.cpp +++ b/tests/loading_from_clipboard/clipboard_testing.cpp @@ -18,7 +18,7 @@ void testEmpty(const QString &clipboard) QString cp(clipboard); DeckList deckList; QTextStream stream(&cp); // text stream requires local copy - deckList.loadFromStream_Plain(stream); + deckList.loadFromStream_Plain(stream, false); ASSERT_TRUE(deckList.getCardList().isEmpty()); } @@ -28,7 +28,7 @@ void testDeck(const QString &clipboard, const Result &result) QString cp(clipboard); DeckList deckList; QTextStream stream(&cp); // text stream requires local copy - deckList.loadFromStream_Plain(stream); + deckList.loadFromStream_Plain(stream, false); ASSERT_EQ(result.name, deckList.getName().toStdString()); ASSERT_EQ(result.comments, deckList.getComments().toStdString());