diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/mozilla/AutoWindowModalState.cpp | 2 | ||||
-rw-r--r-- | embed/mozilla/AutoWindowModalState.h | 5 |
3 files changed, 9 insertions, 5 deletions
@@ -1,5 +1,12 @@ 2006-07-06 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/AutoWindowModalState.cpp: + * embed/mozilla/AutoWindowModalState.h: + + Fix the build. + +2006-07-06 Christian Persch <chpe@cvs.gnome.org> + A embed/mozilla/AutoWindowModalState.cpp: A embed/mozilla/AutoWindowModalState.h: * embed/mozilla/ContentHandler.cpp: diff --git a/embed/mozilla/AutoWindowModalState.cpp b/embed/mozilla/AutoWindowModalState.cpp index e9930d809..e9296262b 100644 --- a/embed/mozilla/AutoWindowModalState.cpp +++ b/embed/mozilla/AutoWindowModalState.cpp @@ -21,8 +21,6 @@ #include <mozilla-config.h> #include "config.h" -#include <nsPIDOMWindow.h> - #include "AutoWindowModalState.h" AutoWindowModalState::AutoWindowModalState (nsIDOMWindow *aWindow) diff --git a/embed/mozilla/AutoWindowModalState.h b/embed/mozilla/AutoWindowModalState.h index 6e7ab9ac9..0c91e4c32 100644 --- a/embed/mozilla/AutoWindowModalState.h +++ b/embed/mozilla/AutoWindowModalState.h @@ -22,8 +22,7 @@ #define AUTO_WINDOWMODALSTATE_H #include <nsCOMPtr.h> - -class nsPIDomWindow; +#include <nsPIDOMWindow.h> class AutoWindowModalState { @@ -33,7 +32,7 @@ class AutoWindowModalState private: - nsCOMPtr<nsPIDomWindow> mWindow; + nsCOMPtr<nsPIDOMWindow> mWindow; }; #endif |