Bug 1660213 - Fixed an used variable error in nsDocumentViewer::GetCurrentSheetFrameAndPageNumber. r=heycam

Differential Revision: https://phabricator.services.mozilla.com/D87806
This commit is contained in:
Hiroyuki Ikezoe 2020-08-20 22:02:54 +00:00
Родитель 0c5b98d077
Коммит d19326f840
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -3432,6 +3432,7 @@ nsDocumentViewer::GetCurrentSheetFrameAndPageNumber() const {
// in PP mPrtPreview->mPrintObject->mSeqFrame is null
auto [seqFrame, pageCount] = mPrintJob->GetSeqFrameAndCountPages();
Unused << pageCount;
if (!seqFrame) {
return {nullptr, 0};
}