diff options
author | saturneric <[email protected]> | 2023-12-01 12:38:52 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-12-01 12:38:52 +0000 |
commit | 9ea9c03263ad14c09d02cc3a9d25c9e890581046 (patch) | |
tree | fe9a01786f4b9c3973fafbcf5d3d679cd36b44f0 /src/ui/SignalStation.h | |
parent | fix: update exit oprations odering (diff) | |
download | GpgFrontend-9ea9c03263ad14c09d02cc3a9d25c9e890581046.tar.gz GpgFrontend-9ea9c03263ad14c09d02cc3a9d25c9e890581046.zip |
fix: discover and fix some bugs
Diffstat (limited to '')
-rw-r--r-- | src/ui/SignalStation.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ui/SignalStation.h b/src/ui/SignalStation.h index 9fa0e778..0e609b89 100644 --- a/src/ui/SignalStation.h +++ b/src/ui/SignalStation.h @@ -28,7 +28,6 @@ #pragma once -#include "ui/GpgFrontendUI.h" #include "ui/widgets/InfoBoardWidget.h" namespace GpgFrontend::UI { @@ -39,7 +38,7 @@ namespace GpgFrontend::UI { */ class SignalStation : public QObject { Q_OBJECT - static std::unique_ptr<SignalStation> _instance; + static std::unique_ptr<SignalStation> instance; public: /** @@ -47,7 +46,7 @@ class SignalStation : public QObject { * * @return SignalStation* */ - static SignalStation* GetInstance(); + static auto GetInstance() -> SignalStation*; signals: /** |