mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-18 08:22:15 -07:00
Lint.
This commit is contained in:
parent
e3f3f0a3ce
commit
05a4469665
1 changed files with 2 additions and 2 deletions
|
|
@ -228,7 +228,7 @@ struct FormatDeckListForExport
|
|||
QString &sideBoardCards;
|
||||
// create main operator for struct, allowing the foreachcard to work.
|
||||
FormatDeckListForExport(QString &_mainBoardCards, QString &_sideBoardCards)
|
||||
: mainBoardCards(_mainBoardCards), sideBoardCards(_sideBoardCards){};
|
||||
: mainBoardCards(_mainBoardCards), sideBoardCards(_sideBoardCards) {};
|
||||
|
||||
void operator()(const InnerDecklistNode *node, const DecklistCardNode *card) const
|
||||
{
|
||||
|
|
@ -254,7 +254,7 @@ struct FormatDeckListForExport
|
|||
mainBoardCards += QString::number(card->getNumber());
|
||||
mainBoardCards += "%20";
|
||||
mainBoardCards += card->getName();
|
||||
if (!card->getCardSetShortName().isNull()){
|
||||
if (!card->getCardSetShortName().isNull()) {
|
||||
mainBoardCards += "%20";
|
||||
mainBoardCards += "(" + card->getCardSetShortName() + ")";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue