mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
remove unused code, better logging for systray, removed KDE5 from enum
This commit is contained in:
parent
4df5c81f09
commit
f2866ecc44
|
@ -88,16 +88,16 @@ SystemTrayIcon::SystemTrayIcon()
|
||||||
g_signal_connect(gtkIcon, "button-release-event", G_CALLBACK(callbackButtonClick), this);
|
g_signal_connect(gtkIcon, "button-release-event", G_CALLBACK(callbackButtonClick), this);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
else if (desktop == "kde" && getenv("KDE_SESSION_VERSION") == QString("5"))
|
else if (desktop == "kde" && getenv("KDE_SESSION_VERSION") == QStringLiteral("5"))
|
||||||
{
|
{
|
||||||
qDebug() << "Using the Qt backend";
|
qDebug() << "Using the Qt backend on KDE5";
|
||||||
qtIcon = new QSystemTrayIcon;
|
qtIcon = new QSystemTrayIcon;
|
||||||
backendType = SystrayBackendType::Qt;
|
backendType = SystrayBackendType::Qt;
|
||||||
connect(qtIcon, &QSystemTrayIcon::activated, this, &SystemTrayIcon::activated);
|
connect(qtIcon, &QSystemTrayIcon::activated, this, &SystemTrayIcon::activated);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
qDebug() << "Using the Qt backend";
|
qDebug() << "Using the Qt backend, because nothing else matches";
|
||||||
qtIcon = new QSystemTrayIcon;
|
qtIcon = new QSystemTrayIcon;
|
||||||
backendType = SystrayBackendType::Qt;
|
backendType = SystrayBackendType::Qt;
|
||||||
connect(qtIcon, &QSystemTrayIcon::activated, this, &SystemTrayIcon::activated);
|
connect(qtIcon, &QSystemTrayIcon::activated, this, &SystemTrayIcon::activated);
|
||||||
|
|
|
@ -63,7 +63,6 @@ extern "C" {
|
||||||
enum class SystrayBackendType
|
enum class SystrayBackendType
|
||||||
{
|
{
|
||||||
Qt,
|
Qt,
|
||||||
KDE5,
|
|
||||||
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
||||||
Unity,
|
Unity,
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue
Block a user