mirror of
https://github.com/YACReader/yacreader
synced 2026-01-18 22:12:44 -05:00
Fixed thread leak when a comic has to be destroyed while it is being processed.
This commit is contained in:
@ -199,7 +199,12 @@ void Comic::updateBookmarkImage(int index)
|
||||
//-----------------------------------------------------------------------------
|
||||
void Comic::setPageLoaded(int page)
|
||||
{
|
||||
_loadedPages[page] = true;
|
||||
_loadedPages[page] = true;
|
||||
}
|
||||
|
||||
void Comic::invalidate()
|
||||
{
|
||||
emit invalidated();
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
QByteArray Comic::getRawPage(int page)
|
||||
|
||||
Reference in New Issue
Block a user