Fix regression in refreshPixmaps

This commit is contained in:
Andre Heinecke 2018-02-10 00:37:19 +01:00 committed by Albert Astals Cid
parent 0d38577b4a
commit 9f458a54cf

View file

@ -1531,7 +1531,7 @@ void DocumentPrivate::refreshPixmaps( int pageNumber )
for ( PixmapRequest *pr : qAsConst( pixmapsToRequest ) )
{
QLinkedList< Okular::PixmapRequest * > requestedPixmaps;
pixmapsToRequest.push_back( pr );
requestedPixmaps.push_back( pr );
m_parent->requestPixmaps( requestedPixmaps, Okular::Document::NoOption );
}