Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
libksysguard
Commits
abf848dd
Commit
abf848dd
authored
Sep 23, 2020
by
David Redondo
🏎
Browse files
Apply 1 suggestion(s) to 1 file(s)
parent
a1492cb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
sensors/SensorDaemonInterface.cpp
View file @
abf848dd
...
...
@@ -54,7 +54,7 @@ SensorDaemonInterface::SensorDaemonInterface(QObject *parent)
void
KSysGuard
::
SensorDaemonInterface
::
reconnect
()
{
d
->
dbusInterface
.
reset
(
new
org
::
kde
::
KSysGuardDaemon
(
Private
::
SensorServiceName
,
Private
::
SensorPath
,
QDBusConnection
::
sessionBus
())
)
;
d
->
dbusInterface
=
std
::
make_unique
<
org
::
kde
::
KSysGuardDaemon
>
(
Private
::
SensorServiceName
,
Private
::
SensorPath
,
QDBusConnection
::
sessionBus
());
connect
(
d
->
dbusInterface
.
get
(),
&
org
::
kde
::
KSysGuardDaemon
::
sensorMetaDataChanged
,
this
,
&
SensorDaemonInterface
::
onMetaDataChanged
);
connect
(
d
->
dbusInterface
.
get
(),
&
org
::
kde
::
KSysGuardDaemon
::
newSensorData
,
this
,
&
SensorDaemonInterface
::
onValueChanged
);
connect
(
d
->
dbusInterface
.
get
(),
&
org
::
kde
::
KSysGuardDaemon
::
sensorAdded
,
this
,
&
SensorDaemonInterface
::
sensorAdded
);
...
...
David Redondo
🏎
@davidre
mentioned in commit
7183f68e
·
Sep 30, 2020
mentioned in commit
7183f68e
mentioned in commit 7183f68ed5815f5812bd1330a9b9bbff16020bbd
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment