Bug 1679706 - Fix an obvious typo in nsPrintJob::GetIsEmpty().

This will get tested when the front-end uses the value.

Differential Revision: https://phabricator.services.mozilla.com/D98575
This commit is contained in:
Emilio Cobos Álvarez 2020-12-03 10:33:06 +00:00
Родитель 5e63427a1b
Коммит 6a45983303
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -883,7 +883,7 @@ bool nsPrintJob::GetIsEmpty() const {
if (numSheets > 1) {
return false;
}
return seqFrame->GetPagesInFirstSheet() > 0;
return !seqFrame->GetPagesInFirstSheet();
}
int32_t nsPrintJob::GetPrintPreviewNumSheets() const {