From f939f5ce3406a77b500e821815352d22ff410ab7 Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Tue, 28 Jun 2011 22:56:08 +0200 Subject: Require an EphyApplication parameter when creating an EphyShell We'll want to create our own in main(), this prepares us for that. --- tests/ephy-download.c | 2 +- tests/ephy-embed-single.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') 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()"); -- cgit