Emit new signal "destroyed" when a comic is destroyed.

This commit is contained in:
Luis Ángel San Martín
2017-09-27 08:58:31 +02:00
parent b28e9e4e68
commit 33b04e6b32
2 changed files with 2 additions and 2 deletions

View File

@ -57,6 +57,7 @@ Comic::Comic(const QString & pathFile, int atPage )
//-----------------------------------------------------------------------------
Comic::~Comic()
{
emit destroyed();
delete bm;
}
//-----------------------------------------------------------------------------