From 1d3c6d0947b4c39682f4f39ecb63e0a6f34111f6 Mon Sep 17 00:00:00 2001 From: ebbit1q Date: Mon, 10 Mar 2025 19:58:37 +0100 Subject: [PATCH] format --- common/decklist.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/decklist.cpp b/common/decklist.cpp index 7916759a5..9183c6421 100644 --- a/common/decklist.cpp +++ b/common/decklist.cpp @@ -368,7 +368,8 @@ DeckList::DeckList() : QObject(), deckHashDirty(true) // TODO: https://qt-project.org/doc/qt-4.8/qobject.html#no-copy-constructor-or-assignment-operator DeckList::DeckList(const DeckList &other) - : QObject(), name(other.name), comments(other.comments), bannerCard(other.bannerCard), deckHash(other.deckHash), deckHashDirty(other.deckHashDirty), lastLoadedTimestamp(other.lastLoadedTimestamp), tags(other.tags) + : QObject(), name(other.name), comments(other.comments), bannerCard(other.bannerCard), deckHash(other.deckHash), + deckHashDirty(other.deckHashDirty), lastLoadedTimestamp(other.lastLoadedTimestamp), tags(other.tags) { root = new InnerDecklistNode(other.getRoot());