mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-11 02:25:34 -04:00
Fixed memory leak in online toaster. The avatar data was not deleted, when the online toaster is deaktivated.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3897 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
38203704f0
commit
a79d2a8e53
1 changed files with 16 additions and 14 deletions
|
@ -422,21 +422,19 @@ void NotifyQt::UpdateGUI()
|
|||
{
|
||||
OnlineToaster * onlineToaster = new OnlineToaster();
|
||||
onlineToaster->setMessage(QString::fromStdString(realmsg));
|
||||
|
||||
if(size != 0)
|
||||
{
|
||||
// set the image
|
||||
QPixmap pix ;
|
||||
pix.loadFromData(data,size,"PNG") ;
|
||||
onlineToaster->setPixmap(pix);
|
||||
delete[] data ;
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
onlineToaster->setPixmap(QPixmap(":/images/user/personal64.png"));
|
||||
}
|
||||
|
||||
if(size != 0)
|
||||
{
|
||||
// set the image
|
||||
QPixmap pix ;
|
||||
pix.loadFromData(data,size,"PNG") ;
|
||||
onlineToaster->setPixmap(pix);
|
||||
}
|
||||
else
|
||||
{
|
||||
onlineToaster->setPixmap(QPixmap(":/images/user/personal64.png"));
|
||||
}
|
||||
|
||||
onlineToaster->show();
|
||||
onlineToaster->play();
|
||||
}
|
||||
|
@ -449,6 +447,10 @@ void NotifyQt::UpdateGUI()
|
|||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if (data) {
|
||||
delete[] data;
|
||||
}
|
||||
}
|
||||
|
||||
if (rsNotify->NotifySysMessage(sysid, type, title, msg))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue