diff options
author | Christian Persch <chpe@src.gnome.org> | 2007-10-28 22:17:29 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-10-28 22:17:29 +0800 |
commit | d4ba140f239d4ebba1d898d86547a920a350a726 (patch) | |
tree | 473cf82643938bda7b5f2bb8e0f7b2b3734d6eb9 /src/ephy-window.c | |
parent | 5eaacd5bd34687ad7dc63f3bddf8b8f140bf2101 (diff) | |
download | gsoc2013-epiphany-d4ba140f239d4ebba1d898d86547a920a350a726.tar gsoc2013-epiphany-d4ba140f239d4ebba1d898d86547a920a350a726.tar.gz gsoc2013-epiphany-d4ba140f239d4ebba1d898d86547a920a350a726.tar.bz2 gsoc2013-epiphany-d4ba140f239d4ebba1d898d86547a920a350a726.tar.lz gsoc2013-epiphany-d4ba140f239d4ebba1d898d86547a920a350a726.tar.xz gsoc2013-epiphany-d4ba140f239d4ebba1d898d86547a920a350a726.tar.zst gsoc2013-epiphany-d4ba140f239d4ebba1d898d86547a920a350a726.zip |
Can't use an interface type in property registration
svn path=/trunk/; revision=7607
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index d5979215d..6ea3790c8 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -2863,7 +2863,7 @@ ephy_window_class_init (EphyWindowClass *klass) g_object_class_install_property (object_class, PROP_ACTIVE_TAB, g_param_spec_object ("active-tab", NULL, NULL, - EPHY_TYPE_EMBED, + GTK_TYPE_WIDGET /* Can't use an interface type here */, G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_object_class_install_property (object_class, |