Loyalty filter added (#3087)

This commit is contained in:
Vafthrudnir 2018-02-07 17:33:01 +01:00 committed by Zach H
parent 35159ef61a
commit a0d6a342d3
9 changed files with 39 additions and 19 deletions

View file

@ -145,7 +145,7 @@ private:
QString setsNames;
bool upsideDownArt;
int loyalty;
QString loyalty;
QStringMap customPicURLs;
MuidMap muIds;
QStringMap collectorNumbers;
@ -166,7 +166,7 @@ public:
const QList<CardRelation *> &_relatedCards = QList<CardRelation *>(),
const QList<CardRelation *> &_reverseRelatedCards = QList<CardRelation *>(),
bool _upsideDownArt = false,
int _loyalty = 0,
const QString &_loyalty = QString(),
bool _cipt = false,
int _tableRow = 0,
const SetList &_sets = SetList(),
@ -187,7 +187,7 @@ public:
const QList<CardRelation *> &_relatedCards = QList<CardRelation *>(),
const QList<CardRelation *> &_reverseRelatedCards = QList<CardRelation *>(),
bool _upsideDownArt = false,
int _loyalty = 0,
const QString &_loyalty = QString(),
bool _cipt = false,
int _tableRow = 0,
const SetList &_sets = SetList(),
@ -245,7 +245,7 @@ public:
{
return pixmapCacheKey;
}
const int &getLoyalty() const
const QString &getLoyalty() const
{
return loyalty;
}