[DeckLoader] Disable copy constructor

Took 1 hour 19 minutes
This commit is contained in:
Lukas Brübach 2025-11-19 09:26:55 +01:00
parent 16392c28c5
commit d69f58992f
4 changed files with 7 additions and 10 deletions

View file

@ -36,12 +36,6 @@ DeckLoader::DeckLoader(QObject *parent, DeckList *_deckList)
deckList->setParent(this);
}
DeckLoader::DeckLoader(const DeckLoader &other)
: QObject(), deckList(other.deckList), lastFileName(other.lastFileName), lastFileFormat(other.lastFileFormat),
lastRemoteDeckId(other.lastRemoteDeckId)
{
}
void DeckLoader::setDeckList(DeckList *_deckList)
{
deckList = _deckList;