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 bool canDelete(Account *account) const;
|
||||||
Q_INVOKABLE void deleteAccount(Account *account);
|
Q_INVOKABLE void deleteAccount(Account *account);
|
||||||
|
|
||||||
Q_SIGNALS:
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void insertAccount(Account *account);
|
void insertAccount(Account *account);
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ class QNetworkReply;
|
||||||
class AssetUpdater : public QObject
|
class AssetUpdater : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit AssetUpdater(Profile &profile, LauncherCore &launcher, QObject *parent = nullptr);
|
explicit AssetUpdater(Profile &profile, LauncherCore &launcher, QObject *parent = nullptr);
|
||||||
|
|
||||||
|
@ -25,7 +26,7 @@ public:
|
||||||
void checkIfDalamudAssetsDone();
|
void checkIfDalamudAssetsDone();
|
||||||
void checkIfFinished();
|
void checkIfFinished();
|
||||||
|
|
||||||
signals:
|
Q_SIGNALS:
|
||||||
void finishedUpdating();
|
void finishedUpdating();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -16,6 +16,7 @@ class LauncherCore;
|
||||||
class Patcher : public QObject
|
class Patcher : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Patcher(LauncherCore &launcher, const QString &baseDirectory, GameData &gameData, QObject *parent = nullptr);
|
Patcher(LauncherCore &launcher, const QString &baseDirectory, GameData &gameData, QObject *parent = nullptr);
|
||||||
Patcher(LauncherCore &launcher, const QString &baseDirectory, BootData &bootData, QObject *parent = nullptr);
|
Patcher(LauncherCore &launcher, const QString &baseDirectory, BootData &bootData, QObject *parent = nullptr);
|
||||||
|
|
|
@ -14,6 +14,7 @@ class LoginInformation;
|
||||||
class SquareBoot : public QObject
|
class SquareBoot : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SquareBoot(LauncherCore &window, SquareLauncher &launcher, QObject *parent = nullptr);
|
SquareBoot(LauncherCore &window, SquareLauncher &launcher, QObject *parent = nullptr);
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
class SquareLauncher : public QObject
|
class SquareLauncher : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit SquareLauncher(LauncherCore &window, QObject *parent = nullptr);
|
explicit SquareLauncher(LauncherCore &window, QObject *parent = nullptr);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue