diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-10-04 20:53:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-10-04 20:53:22 +0800 |
commit | c74cae5e214e1f9e27b0e9c624fcb1e2f48fb450 (patch) | |
tree | dd47d4e4b72abb75c81e9a68f0108138f485e44c | |
parent | 5c2a8cec5877e3e030ef8d563ac98b108e655e2c (diff) | |
download | gsoc2013-epiphany-c74cae5e214e1f9e27b0e9c624fcb1e2f48fb450.tar gsoc2013-epiphany-c74cae5e214e1f9e27b0e9c624fcb1e2f48fb450.tar.gz gsoc2013-epiphany-c74cae5e214e1f9e27b0e9c624fcb1e2f48fb450.tar.bz2 gsoc2013-epiphany-c74cae5e214e1f9e27b0e9c624fcb1e2f48fb450.tar.lz gsoc2013-epiphany-c74cae5e214e1f9e27b0e9c624fcb1e2f48fb450.tar.xz gsoc2013-epiphany-c74cae5e214e1f9e27b0e9c624fcb1e2f48fb450.tar.zst gsoc2013-epiphany-c74cae5e214e1f9e27b0e9c624fcb1e2f48fb450.zip |
Fix a warning.
2004-10-04 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-embed-single.cpp:
Fix a warning.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2004-10-04 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/mozilla-embed-single.cpp: + + Fix a warning. + 2004-10-03 Christian Persch <chpe@cvs.gnome.org> * src/window-commands.c: (window_cmd_help_about): diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index 9525b5fa2..59a8cb00e 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -382,6 +382,7 @@ have_gnome_url_handler (const gchar *protocol) return rv; } +#if defined(MOZ_NSIXULCHROMEREGISTRY_SELECTSKIN) || defined(HAVE_CHROME_NSICHROMEREGISTRYSEA_H) static nsresult getUILang (nsAString& aUILang) { @@ -404,6 +405,7 @@ getUILang (nsAString& aUILang) return NS_OK; } +#endif static nsresult mozilla_init_chrome (void) |