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
Network
KDE Connect
Commits
62e02180
Commit
62e02180
authored
Jun 15, 2021
by
Piyush Aggarwal
🎮
Browse files
indicatorhelper_win: make sure we kill all kdeconnect executables when Quit is triggered
parent
f681911d
Changes
2
Hide whitespace changes
Inline
Side-by-side
indicator/indicatorhelper.h
View file @
62e02180
...
...
@@ -21,6 +21,10 @@
namespace
processes
{
const
QString
dbus_daemon
=
QStringLiteral
(
"dbus-daemon.exe"
);
const
QString
kdeconnect_daemon
=
QStringLiteral
(
"kdeconnectd.exe"
);
const
QString
kdeconnect_app
=
QStringLiteral
(
"kdeconnect-app.exe"
);
const
QString
kdeconnect_handler
=
QStringLiteral
(
"kdeconnect-handler.exe"
);
const
QString
kdeconnect_settings
=
QStringLiteral
(
"kdeconnect-settings.exe"
);
const
QString
kdeconnect_sms
=
QStringLiteral
(
"kdeconnect-sms.exe"
);
};
#endif
...
...
indicator/indicatorhelper_win.cpp
View file @
62e02180
...
...
@@ -22,6 +22,10 @@ IndicatorHelper::IndicatorHelper(const QUrl& indicatorUrl)
IndicatorHelper
::~
IndicatorHelper
()
{
this
->
terminateProcess
(
processes
::
dbus_daemon
,
m_indicatorUrl
);
this
->
terminateProcess
(
processes
::
kdeconnect_app
,
m_indicatorUrl
);
this
->
terminateProcess
(
processes
::
kdeconnect_handler
,
m_indicatorUrl
);
this
->
terminateProcess
(
processes
::
kdeconnect_settings
,
m_indicatorUrl
);
this
->
terminateProcess
(
processes
::
kdeconnect_sms
,
m_indicatorUrl
);
this
->
terminateProcess
(
processes
::
kdeconnect_daemon
,
m_indicatorUrl
);
}
...
...
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