diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-09-17 21:27:38 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-09-17 21:28:08 +0800 |
commit | 4fa7b24490aee6ce0233d0825c2cf47d667b199c (patch) | |
tree | 7fe8ad443c4f7809df41011283478f51523653dc /src | |
parent | 34c55e1bc72392575df57f4e054d25d09f57bef9 (diff) | |
download | gsoc2013-epiphany-4fa7b24490aee6ce0233d0825c2cf47d667b199c.tar.gz gsoc2013-epiphany-4fa7b24490aee6ce0233d0825c2cf47d667b199c.tar.zst gsoc2013-epiphany-4fa7b24490aee6ce0233d0825c2cf47d667b199c.zip |
ephy-shell: chain to parent ::startup method
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-shell.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 1a1553ead..bf8eb18f6 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -170,6 +170,8 @@ queue_commands (EphyShell *shell) static void ephy_shell_startup (GApplication* application) { + G_APPLICATION_CLASS (ephy_shell_parent_class)->startup (application); + /* We're not remoting; start our services */ /* Migrate profile if we are not running a private instance */ /* TODO: we want to migrate each WebApp profile too */ |