diff options
author | Moonchild <moonchild@palemoon.org> | 2020-05-21 16:22:51 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-05-23 16:13:14 +0200 |
commit | 44de3c3023f40686d1cc46c8074e7b04d6832966 (patch) | |
tree | a419644f751baab31870e8edce9e67f6c3eb3193 /layout | |
parent | a3124c55a13fba4877e0eaa7a6b31f17832b6ce1 (diff) | |
download | UXP-44de3c3023f40686d1cc46c8074e7b04d6832966.tar UXP-44de3c3023f40686d1cc46c8074e7b04d6832966.tar.gz UXP-44de3c3023f40686d1cc46c8074e7b04d6832966.tar.lz UXP-44de3c3023f40686d1cc46c8074e7b04d6832966.tar.xz UXP-44de3c3023f40686d1cc46c8074e7b04d6832966.zip |
[printing] Fix build bustage with --disable-printing
Diffstat (limited to 'layout')
-rw-r--r-- | layout/base/nsDocumentViewer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/layout/base/nsDocumentViewer.cpp b/layout/base/nsDocumentViewer.cpp index 8baf1a464..df0f1266d 100644 --- a/layout/base/nsDocumentViewer.cpp +++ b/layout/base/nsDocumentViewer.cpp @@ -544,10 +544,12 @@ nsDocumentViewer::~nsDocumentViewer() mDocument->Destroy(); } +#ifdef NS_PRINTING if (mPrintEngine) { mPrintEngine->Destroy(); mPrintEngine = nullptr; } +#endif MOZ_RELEASE_ASSERT(mDestroyRefCount == 0); NS_ASSERTION(!mPresShell && !mPresContext, |