We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc32fe2 commit c05e141Copy full SHA for c05e141
cpp/idletimer.cpp
@@ -12,7 +12,7 @@ class IdleTimer : public QObject
12
public:
13
14
static IdleTimer *singleton() {
15
- if (_singleton == nullptr) _singleton = new IdleTimer;
+ if (_singleton == nullptr) _singleton = new IdleTimer;
16
return _singleton;
17
}
18
@@ -38,12 +38,13 @@ class IdleTimer : public QObject
38
39
40
41
- static IdleTimer* _singleton;
+ static IdleTimer* _singleton;
42
+
43
private:
44
45
int32_t *guiIdleRun;
46
- QBasicTimer timer;
47
+ QBasicTimer timer;
48
};
49
50
IdleTimer* IdleTimer::_singleton;
0 commit comments