aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-12-15 21:59:11 +0800
committerChristian Persch <chpe@src.gnome.org>2003-12-15 21:59:11 +0800
commit3d83b51e03f4908acda3960fb50543925495bcd0 (patch)
treef4e76b467aae63527d7ea3188039e6db81787595
parent845c4d3f2ac83c2a714422fc7632208fe0d3d381 (diff)
downloadgsoc2013-epiphany-3d83b51e03f4908acda3960fb50543925495bcd0.tar
gsoc2013-epiphany-3d83b51e03f4908acda3960fb50543925495bcd0.tar.gz
gsoc2013-epiphany-3d83b51e03f4908acda3960fb50543925495bcd0.tar.bz2
gsoc2013-epiphany-3d83b51e03f4908acda3960fb50543925495bcd0.tar.lz
gsoc2013-epiphany-3d83b51e03f4908acda3960fb50543925495bcd0.tar.xz
gsoc2013-epiphany-3d83b51e03f4908acda3960fb50543925495bcd0.tar.zst
gsoc2013-epiphany-3d83b51e03f4908acda3960fb50543925495bcd0.zip
Fix silly type flags.
2003-12-15 Christian Persch <chpe@cvs.gnome.org> * src/ephy-extension.c: (ephy_extension_get_type): Fix silly type flags.
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-extension.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 972793bae..4ccff55c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2003-12-15 Christian Persch <chpe@cvs.gnome.org>
+ * src/ephy-extension.c: (ephy_extension_get_type):
+
+ Fix silly type flags.
+
+2003-12-15 Christian Persch <chpe@cvs.gnome.org>
+
* lib/widgets/ephy-zoom-control.c: (connect_proxy):
Don't use deprecated macro.
diff --git a/src/ephy-extension.c b/src/ephy-extension.c
index d164bab6c..a4022b67d 100644
--- a/src/ephy-extension.c
+++ b/src/ephy-extension.c
@@ -37,8 +37,7 @@ ephy_extension_get_type (void)
type = g_type_register_static (G_TYPE_INTERFACE,
"EphyExtension",
- &our_info,
- G_TYPE_FLAG_ABSTRACT);
+ &our_info, 0);
}
return type;