Skip to content

Commit 742d045

Browse files
committed
Fixed - GlobalSignals were not really global
1 parent bd9eba9 commit 742d045

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/hyperiond/hyperiond.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#include "utils/Logger.h"
2828
#include "utils/VideoMode.h"
2929
#include "utils/global_defines.h"
30+
#include <utils/GlobalSignals.h>
3031

3132
#include <HyperionConfig.h> // Required to determine the cmake options
3233

@@ -82,6 +83,10 @@
8283
#include <cec/CECHandler.h>
8384
#endif
8485

86+
namespace {
87+
GlobalSignals* ensureGlobalSignalsInitialized = GlobalSignals::getInstance();
88+
}
89+
8590
HyperionDaemon* HyperionDaemon::daemon = nullptr;
8691

8792
HyperionDaemon::HyperionDaemon(const QString& rootPath, QObject* parent, bool logLvlOverwrite)

0 commit comments

Comments
 (0)