diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/EphyBrowser.h | 6 |
2 files changed, 10 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2004-12-31 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/EphyBrowser.h: + + Fix compilation in the !HAVE_MOZILLA_PSM case. + +2004-12-31 Christian Persch <chpe@cvs.gnome.org> + * embed/ephy-embed-shell.c: (ephy_embed_shell_finalize), (ephy_embed_shell_get_encodings): * embed/ephy-embed-shell.h: diff --git a/embed/mozilla/EphyBrowser.h b/embed/mozilla/EphyBrowser.h index 05e93235e..c2d583417 100644 --- a/embed/mozilla/EphyBrowser.h +++ b/embed/mozilla/EphyBrowser.h @@ -156,11 +156,13 @@ private: nsCOMPtr<nsIDOMDocument> mTargetDocument; nsCOMPtr<nsIDOMEventTarget> mEventTarget; nsCOMPtr<nsIDOMWindow> mDOMWindow; - nsCOMPtr<nsISecureBrowserUI> mSecurityInfo; EphyFaviconEventListener *mFaviconEventListener; EphyPopupBlockEventListener *mPopupBlockEventListener; EphyModalAlertEventListener *mModalAlertListener; PRBool mInitialized; +#ifdef HAVE_MOZILLA_PSM + nsCOMPtr<nsISecureBrowserUI> mSecurityInfo; +#endif nsresult GetListener (void); nsresult AttachListeners (void); @@ -171,4 +173,4 @@ private: PRBool CompareFormsText (nsAString &aDefaultText, nsAString &aUserText); }; -#endif +#endif /* !EPHY_BROWSER_H */ |