diff options
author | Xan Lopez <xan@src.gnome.org> | 2009-03-01 20:31:12 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2009-03-01 20:31:12 +0800 |
commit | 694d3386191b330440807cf52d2f5420d882085f (patch) | |
tree | 5a6ad1e4c97adba369e22d05287fcdebb0e204dc | |
parent | 97672832eb5830f252f69a015ddf1fab70cf12f7 (diff) | |
download | gsoc2013-epiphany-694d3386191b330440807cf52d2f5420d882085f.tar gsoc2013-epiphany-694d3386191b330440807cf52d2f5420d882085f.tar.gz gsoc2013-epiphany-694d3386191b330440807cf52d2f5420d882085f.tar.bz2 gsoc2013-epiphany-694d3386191b330440807cf52d2f5420d882085f.tar.lz gsoc2013-epiphany-694d3386191b330440807cf52d2f5420d882085f.tar.xz gsoc2013-epiphany-694d3386191b330440807cf52d2f5420d882085f.tar.zst gsoc2013-epiphany-694d3386191b330440807cf52d2f5420d882085f.zip |
ephy-file-chooser: cast parent_class properly.
svn path=/trunk/; revision=8829
-rw-r--r-- | lib/ephy-file-chooser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-file-chooser.c b/lib/ephy-file-chooser.c index 75c075296..2fd9a7d3e 100644 --- a/lib/ephy-file-chooser.c +++ b/lib/ephy-file-chooser.c @@ -109,8 +109,8 @@ ephy_file_chooser_constructor (GType type, GObject *object; char *downloads_dir; - object = ephy_file_chooser_parent_class->constructor (type, n_construct_properties, - construct_params); + object = G_OBJECT_CLASS (ephy_file_chooser_parent_class)->constructor (type, n_construct_properties, + construct_params); downloads_dir = ephy_file_get_downloads_dir (); gtk_file_chooser_add_shortcut_folder |