Give me the strength to lint that, which is necessary, and to unlint that, which the IDE has linted by itself.

Took 5 minutes
This commit is contained in:
Lukas Brübach 2025-10-08 22:05:12 +02:00
parent 9d868f9c2d
commit 0579985432
4 changed files with 4 additions and 5 deletions

View file

@ -1,9 +1,9 @@
#include "deck_filter_string.h"
#include <libcockatrice/utility/peglib.h>
#include "filter_string.h"
#include <libcockatrice/card/card_database/card_database_manager.h>
#include <libcockatrice/utility/peglib.h>
static peg::parser search(R"(
Start <- QueryPartList

View file

@ -1,12 +1,11 @@
#include "filter_string.h"
#include <libcockatrice/utility/peglib.h>
#include <QByteArray>
#include <QDebug>
#include <QRegularExpression>
#include <QString>
#include <functional>
#include <libcockatrice/utility/peglib.h>
static peg::parser search(R"(
Start <- QueryPartList

View file

@ -112,7 +112,7 @@ void ZoneViewZone::zoneDumpReceived(const Response &r)
qobject_cast<ZoneViewZoneLogic *>(getLogic())->updateCardIds(ZoneViewZoneLogic::INITIALIZE);
reorganizeCards();
emit getLogic() -> cardCountChanged();
emit getLogic()->cardCountChanged();
}
// Because of boundingRect(), this function must not be called before the zone was added to a scene.

View file

@ -29,7 +29,6 @@
#include "interface/window_main.h"
#include "version_string.h"
#include <libcockatrice/protocol/featureset.h>
#include <QApplication>
#include <QCryptographicHash>
#include <QDateTime>
@ -42,6 +41,7 @@
#include <QTextStream>
#include <QTranslator>
#include <QtPlugin>
#include <libcockatrice/protocol/featureset.h>
#include <libcockatrice/rng/rng_sfmt.h>
#include <libcockatrice/settings/cache_settings.h>
#include <libcockatrice/utility/logger.h>