diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-09 02:11:56 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-09 02:11:56 +0800 |
commit | ab5fe114f9aace01c98a6407fb657adf274cb531 (patch) | |
tree | 5d69371a1d0da9fe5f682aff181539d71aff6dc7 /embed/mozilla/mozilla-embed-single.cpp | |
parent | 859bd4706dba82e469d699aebd3f6336c0482c7a (diff) | |
download | gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.gz gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.bz2 gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.lz gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.xz gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.zst gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.zip |
Fix compiler warning about anon enum mismatch.
2004-08-08 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/EphyBrowser.h:
Fix compiler warning about anon enum mismatch.
Diffstat (limited to 'embed/mozilla/mozilla-embed-single.cpp')
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index b0ffffeb3..66d6f54d1 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -1,6 +1,6 @@ /* vim:set ts=8 noet sw=8: - * Copyright (C) 2000-2003 Marco Pesenti Gritti - * Copyright (C) 2003 Christian Persch + * Copyright (C) 2000-2004 Marco Pesenti Gritti + * Copyright (C) 2003, 2004 Christian Persch * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -307,9 +307,9 @@ mozilla_setup_colors (MozillaEmbedSingle *mes) static void mozilla_embed_single_new_window_orphan_cb (GtkMozEmbedSingle *embed, - GtkMozEmbed **retval, - guint chrome_mask, - EphyEmbedSingle *shell) + GtkMozEmbed **retval, + guint chrome_mask, + EphyEmbedSingle *shell) { g_assert (chrome_mask & GTK_MOZ_EMBED_FLAG_OPENASCHROME); |