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:
parent
aaafc05079
commit
c50780e149
5 changed files with 5 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -14,6 +14,7 @@ class LoginInformation;
|
|||
class SquareBoot : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
SquareBoot(LauncherCore &window, SquareLauncher &launcher, QObject *parent = nullptr);
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
class SquareLauncher : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit SquareLauncher(LauncherCore &window, QObject *parent = nullptr);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue