Fixed crash in GxsIdChooser. The TokenQueue was not deleted in the destructor.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7499 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2014-08-29 11:22:54 +00:00
parent 21b0479159
commit 6085ccd43f

View File

@ -73,6 +73,10 @@ GxsIdChooser::GxsIdChooser(QWidget *parent)
GxsIdChooser::~GxsIdChooser()
{
if (mIdQueue) {
delete(mIdQueue);
mIdQueue = NULL;
}
}
void GxsIdChooser::setUpdateWhenInvisible(bool update)