diff options
author | Moonchild <moonchild@palemoon.org> | 2020-04-29 19:53:36 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-05-06 19:06:17 +0200 |
commit | 537c63d600ac5769c509e0f9c7fdd53a294615eb (patch) | |
tree | 259a11402ac77cc403ed43c86574d7e5a7fbe54a /layout/printing/nsPrintEngine.cpp | |
parent | 975db4c7f0027992845dbd41fa66bef38f285dd9 (diff) | |
download | UXP-537c63d600ac5769c509e0f9c7fdd53a294615eb.tar UXP-537c63d600ac5769c509e0f9c7fdd53a294615eb.tar.gz UXP-537c63d600ac5769c509e0f9c7fdd53a294615eb.tar.lz UXP-537c63d600ac5769c509e0f9c7fdd53a294615eb.tar.xz UXP-537c63d600ac5769c509e0f9c7fdd53a294615eb.zip |
Issue #80 - De-unify layout/printing
Diffstat (limited to 'layout/printing/nsPrintEngine.cpp')
-rw-r--r-- | layout/printing/nsPrintEngine.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/layout/printing/nsPrintEngine.cpp b/layout/printing/nsPrintEngine.cpp index f2db53250..67208447a 100644 --- a/layout/printing/nsPrintEngine.cpp +++ b/layout/printing/nsPrintEngine.cpp @@ -16,6 +16,7 @@ #include "nsPIDOMWindow.h" #include "nsIDocShell.h" #include "nsIURI.h" +#include "nsIFile.h" #include "nsITextToSubURI.h" #include "nsError.h" @@ -143,7 +144,7 @@ using namespace mozilla::dom; #define DUMP_LAYOUT_LEVEL 9 // this turns on the dumping of each doucment's layout info #ifndef PR_PL -static mozilla::LazyLogModule gPrintingLog("printing") +static mozilla::LazyLogModule gPrintingLog("printing"); #define PR_PL(_p1) MOZ_LOG(gPrintingLog, mozilla::LogLevel::Debug, _p1); #endif |