diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-06-29 04:56:08 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-06-29 20:53:01 +0800 |
commit | f939f5ce3406a77b500e821815352d22ff410ab7 (patch) | |
tree | 2d47cc4280158c5410da31b8a1543fe51100864a /tests | |
parent | bd14d50456be46422d955a4290fb27e964a0b5b2 (diff) | |
download | gsoc2013-epiphany-f939f5ce3406a77b500e821815352d22ff410ab7.tar gsoc2013-epiphany-f939f5ce3406a77b500e821815352d22ff410ab7.tar.gz gsoc2013-epiphany-f939f5ce3406a77b500e821815352d22ff410ab7.tar.bz2 gsoc2013-epiphany-f939f5ce3406a77b500e821815352d22ff410ab7.tar.lz gsoc2013-epiphany-f939f5ce3406a77b500e821815352d22ff410ab7.tar.xz gsoc2013-epiphany-f939f5ce3406a77b500e821815352d22ff410ab7.tar.zst gsoc2013-epiphany-f939f5ce3406a77b500e821815352d22ff410ab7.zip |
Require an EphyApplication parameter when creating an EphyShell
We'll want to create our own in main(), this prepares us for that.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ephy-download.c | 2 | ||||
-rw-r--r-- | tests/ephy-embed-single.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ephy-download.c b/tests/ephy-download.c index 14fe81a2d..ed9144ed7 100644 --- a/tests/ephy-download.c +++ b/tests/ephy-download.c @@ -173,7 +173,7 @@ main (int argc, char *argv[]) ephy_debug_init (); ephy_embed_prefs_init (); - _ephy_shell_create_instance (); + _ephy_shell_create_instance (NULL); if (!ephy_file_helpers_init (NULL, TRUE, FALSE, NULL)) { g_debug ("Something wrong happened with ephy_file_helpers_init()"); diff --git a/tests/ephy-embed-single.c b/tests/ephy-embed-single.c index 200a2fd2d..9e15e9ae3 100644 --- a/tests/ephy-embed-single.c +++ b/tests/ephy-embed-single.c @@ -101,7 +101,7 @@ main (int argc, char *argv[]) ephy_debug_init (); ephy_embed_prefs_init (); - _ephy_shell_create_instance (); + _ephy_shell_create_instance (NULL); if (!ephy_file_helpers_init (NULL, TRUE, FALSE, NULL)) { g_debug ("Something wrong happened with ephy_file_helpers_init()"); |