diff --git a/mozilla/dom/public/coreEvents/MANIFEST b/mozilla/dom/public/coreEvents/MANIFEST index d65b13305ba..980fc4e22bf 100644 --- a/mozilla/dom/public/coreEvents/MANIFEST +++ b/mozilla/dom/public/coreEvents/MANIFEST @@ -14,3 +14,4 @@ nsIDOMLoadListener.h nsIDOMMouseListener.h nsIDOMMouseMotionListener.h nsIDOMDragListener.h +nsIDOMPaintListener.h diff --git a/mozilla/dom/public/coreEvents/Makefile b/mozilla/dom/public/coreEvents/Makefile index 18fde778b1c..10bc0d843c6 100644 --- a/mozilla/dom/public/coreEvents/Makefile +++ b/mozilla/dom/public/coreEvents/Makefile @@ -19,20 +19,22 @@ DEPTH=../../.. DEFINES = -D_IMPL_NS_DOM -EXPORTS = \ + +EXPORTS = \ nsIDOMEvent.h \ - nsIDOMNSEvent.h \ - nsIDOMEventListener.h \ + nsIDOMEventListener.h \ nsIDOMEventCapturer.h \ nsIDOMEventReceiver.h \ nsIDOMFocusListener.h \ nsIDOMFormListener.h \ - nsIDOMKeyListener.h \ - nsIDOMLoadListener.h \ - nsIDOMMouseListener.h \ - nsIDOMMouseMotionListener.h \ - nsIDOMDragListener.h \ - $(NULL) + nsIDOMKeyListener.h \ + nsIDOMLoadListener.h \ + nsIDOMMouseListener.h \ + nsIDOMMouseMotionListener.h \ + nsIDOMPaintListener.h \ + nsIDOMDragListener.h \ + nsIDOMNSEvent.h \ + $(NULL) MODULE = dom diff --git a/mozilla/dom/public/coreEvents/makefile.win b/mozilla/dom/public/coreEvents/makefile.win index b36995643f3..6a9a7193224 100644 --- a/mozilla/dom/public/coreEvents/makefile.win +++ b/mozilla/dom/public/coreEvents/makefile.win @@ -19,10 +19,24 @@ DEPTH=..\..\.. IGNORE_MANIFEST=1 DEFINES=-D_IMPL_NS_DOM -EXPORTS=nsIDOMEvent.h nsIDOMEventListener.h nsIDOMEventCapturer.h nsIDOMEventReceiver.h \ - nsIDOMFocusListener.h nsIDOMFormListener.h nsIDOMKeyListener.h nsIDOMLoadListener.h \ - nsIDOMMouseListener.h nsIDOMMouseMotionListener.h nsIDOMDragListener.h nsIDOMNSEvent.h -MODULE=dom + +EXPORTS = \ + nsIDOMEvent.h \ + nsIDOMEventListener.h \ + nsIDOMEventCapturer.h \ + nsIDOMEventReceiver.h \ + nsIDOMFocusListener.h \ + nsIDOMFormListener.h \ + nsIDOMKeyListener.h \ + nsIDOMLoadListener.h \ + nsIDOMMouseListener.h \ + nsIDOMMouseMotionListener.h \ + nsIDOMPaintListener.h \ + nsIDOMDragListener.h \ + nsIDOMNSEvent.h \ + $(NULL) + +MODULE=dom include <$(DEPTH)\config\rules.mak>