diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-12-15 21:59:11 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-12-15 21:59:11 +0800 |
commit | 3d83b51e03f4908acda3960fb50543925495bcd0 (patch) | |
tree | f4e76b467aae63527d7ea3188039e6db81787595 /src | |
parent | 845c4d3f2ac83c2a714422fc7632208fe0d3d381 (diff) | |
download | gsoc2013-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.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-extension.c | 3 |
1 files changed, 1 insertions, 2 deletions
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; |