diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-06-20 07:02:35 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-06-20 07:02:35 +0800 |
commit | 06f99e7fd7c4db1c2effc4822c2ccc252a279615 (patch) | |
tree | 79842538ef4412a67e7cd5ead32d151340172836 /embed/mozilla | |
parent | 0f5b97d114f6febf190e2403e53efd85667ff468 (diff) | |
download | gsoc2013-epiphany-06f99e7fd7c4db1c2effc4822c2ccc252a279615.tar gsoc2013-epiphany-06f99e7fd7c4db1c2effc4822c2ccc252a279615.tar.gz gsoc2013-epiphany-06f99e7fd7c4db1c2effc4822c2ccc252a279615.tar.bz2 gsoc2013-epiphany-06f99e7fd7c4db1c2effc4822c2ccc252a279615.tar.lz gsoc2013-epiphany-06f99e7fd7c4db1c2effc4822c2ccc252a279615.tar.xz gsoc2013-epiphany-06f99e7fd7c4db1c2effc4822c2ccc252a279615.tar.zst gsoc2013-epiphany-06f99e7fd7c4db1c2effc4822c2ccc252a279615.zip |
Look! Yet Another Mozilla API Change!
2006-06-19 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyAboutModule.cpp:
Look! Yet Another Mozilla API Change!
Diffstat (limited to 'embed/mozilla')
-rw-r--r-- | embed/mozilla/EphyAboutModule.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/embed/mozilla/EphyAboutModule.cpp b/embed/mozilla/EphyAboutModule.cpp index 6a46b6707..92bc975f4 100644 --- a/embed/mozilla/EphyAboutModule.cpp +++ b/embed/mozilla/EphyAboutModule.cpp @@ -94,6 +94,17 @@ EphyAboutModule::NewChannel(nsIURI *aURI, return NS_ERROR_ILLEGAL_VALUE; } +#ifdef HAVE_GECKO_1_9 +/* unsigned long getURIFlags(in nsIURI aURI); */ +NS_IMETHODIMP +EphyAboutModule::GetURIFlags (nsIURI *aURI, + PRUint32 *_result) +{ + *_result = 0; + return NS_OK; +} +#endif + /* private functions */ nsresult |