remove useless semicolons

removes the semicolons after empty function definitions
these semicolons are optional, they don't do anything
this will have functions be consistently formatted
if we want to keep the option to have these on the same line like they
were before we should use the option AllowShortFunctionsOnASingleLine: None
This commit is contained in:
ebbit1q 2025-10-10 02:08:57 +02:00
parent c75f5386b5
commit 9b65422d5a
8 changed files with 26 additions and 8 deletions

View file

@ -52,7 +52,9 @@ private:
enum Attr a;
public:
CardFilter(QString &term, Type type, Attr attr) : trm(term), t(type), a(attr) {};
CardFilter(QString &term, Type type, Attr attr) : trm(term), t(type), a(attr)
{
}
Type type() const
{

View file

@ -27,7 +27,9 @@ class TabDeckStorageVisual final : public Tab
Q_OBJECT
public:
explicit TabDeckStorageVisual(TabSupervisor *_tabSupervisor);
void retranslateUi() override {};
void retranslateUi() override
{
}
[[nodiscard]] QString getTabText() const override
{
return tr("Visual Deck Storage");