mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(systemtrayicon, widget): Added deallocate memory
This commit is contained in:
parent
0a2f541945
commit
cbb7eeca62
|
@ -99,6 +99,19 @@ SystemTrayIcon::SystemTrayIcon()
|
||||||
|
|
||||||
SystemTrayIcon::~SystemTrayIcon()
|
SystemTrayIcon::~SystemTrayIcon()
|
||||||
{
|
{
|
||||||
|
delete qtIcon;
|
||||||
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
||||||
|
delete unityIndicator;
|
||||||
|
delete unityMenu;
|
||||||
|
#endif
|
||||||
|
#ifdef ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND
|
||||||
|
delete statusNotifier;
|
||||||
|
delete snMenu;
|
||||||
|
#endif
|
||||||
|
#ifdef ENABLE_SYSTRAY_GTK_BACKEND
|
||||||
|
delete gtkIcon;
|
||||||
|
delete gtkMenu;
|
||||||
|
#endif
|
||||||
qDebug() << "Deleting SystemTrayIcon";
|
qDebug() << "Deleting SystemTrayIcon";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -482,7 +482,10 @@ Widget::~Widget()
|
||||||
Translator::unregister(this);
|
Translator::unregister(this);
|
||||||
AutoUpdater::abortUpdates();
|
AutoUpdater::abortUpdates();
|
||||||
if (icon)
|
if (icon)
|
||||||
|
{
|
||||||
icon->hide();
|
icon->hide();
|
||||||
|
delete icon;
|
||||||
|
}
|
||||||
|
|
||||||
delete profileForm;
|
delete profileForm;
|
||||||
delete settingsWidget;
|
delete settingsWidget;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user