1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 12:47:44 +00:00

Fix spacing of Q_OBJECT macros

This commit is contained in:
Joshua Goins 2023-09-17 08:32:47 -04:00
parent aaafc05079
commit c50780e149
5 changed files with 5 additions and 3 deletions

View file

@ -37,8 +37,6 @@ public:
Q_INVOKABLE bool canDelete(Account *account) const;
Q_INVOKABLE void deleteAccount(Account *account);
Q_SIGNALS:
private:
void insertAccount(Account *account);

View file

@ -15,6 +15,7 @@ class QNetworkReply;
class AssetUpdater : public QObject
{
Q_OBJECT
public:
explicit AssetUpdater(Profile &profile, LauncherCore &launcher, QObject *parent = nullptr);
@ -25,7 +26,7 @@ public:
void checkIfDalamudAssetsDone();
void checkIfFinished();
signals:
Q_SIGNALS:
void finishedUpdating();
private:

View file

@ -16,6 +16,7 @@ class LauncherCore;
class Patcher : public QObject
{
Q_OBJECT
public:
Patcher(LauncherCore &launcher, const QString &baseDirectory, GameData &gameData, QObject *parent = nullptr);
Patcher(LauncherCore &launcher, const QString &baseDirectory, BootData &bootData, QObject *parent = nullptr);

View file

@ -14,6 +14,7 @@ class LoginInformation;
class SquareBoot : public QObject
{
Q_OBJECT
public:
SquareBoot(LauncherCore &window, SquareLauncher &launcher, QObject *parent = nullptr);

View file

@ -11,6 +11,7 @@
class SquareLauncher : public QObject
{
Q_OBJECT
public:
explicit SquareLauncher(LauncherCore &window, QObject *parent = nullptr);