mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
Issue #1564 - Fix debug build dependencies
This commit is contained in:
parent
5416b4294b
commit
d2ec4693eb
5 changed files with 12 additions and 0 deletions
|
|
@ -17,6 +17,9 @@
|
|||
#include "nsCOMPtr.h"
|
||||
#include "nsColor.h"
|
||||
#include "nsComputedDOMStyle.h"
|
||||
#ifdef DEBUG
|
||||
#include "nsDocument.h"
|
||||
#endif
|
||||
#include "nsDebug.h"
|
||||
#include "nsDependentSubstring.h"
|
||||
#include "nsError.h"
|
||||
|
|
|
|||
|
|
@ -11,6 +11,9 @@
|
|||
#include "nsCOMPtr.h"
|
||||
#include "nsComputedDOMStyle.h"
|
||||
#include "nsDebug.h"
|
||||
#ifdef DEBUG
|
||||
#include "nsDocument.h"
|
||||
#endif
|
||||
#include "nsError.h"
|
||||
#include "nsGkAtoms.h"
|
||||
#include "nsIAtom.h"
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@
|
|||
#define HTMLEditUtils_h
|
||||
|
||||
#include <stdint.h>
|
||||
#ifdef DEBUG
|
||||
// Used by various files for debug logging; included here to reduce duplication
|
||||
#include "nsDocument.h"
|
||||
#endif
|
||||
|
||||
class nsIDOMNode;
|
||||
class nsINode;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue