Move enum to separate namespace

This commit is contained in:
RickyRister 2025-12-07 04:59:30 -08:00
parent 3ef0f806b8
commit 6cbb438256
14 changed files with 182 additions and 154 deletions

View file

@ -259,7 +259,7 @@ void DeckViewContainer::loadLocalDeck()
void DeckViewContainer::loadDeckFromFile(const QString &filePath)
{
LoadedDeck::FileFormat fmt = LoadedDeck::getFormatFromName(filePath);
DeckFileFormat::Format fmt = DeckFileFormat::getFormatFromName(filePath);
DeckLoader deck(this);
bool success = deck.loadFromFile(filePath, fmt, true);