diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2013-01-08 18:30:38 +0800 |
---|---|---|
committer | Carlos Garcia Campos <cgarcia@igalia.com> | 2013-01-09 00:49:28 +0800 |
commit | aff7854dd623643a1d76676508dbb9265a4c3bc1 (patch) | |
tree | e3164dd4e200ee5d7658e91274500dca2c4b5e8d /tests | |
parent | 5a570470ebdd1f3ed5aa2977a40bb85623b336e6 (diff) | |
download | gsoc2013-epiphany-aff7854dd623643a1d76676508dbb9265a4c3bc1.tar gsoc2013-epiphany-aff7854dd623643a1d76676508dbb9265a4c3bc1.tar.gz gsoc2013-epiphany-aff7854dd623643a1d76676508dbb9265a4c3bc1.tar.bz2 gsoc2013-epiphany-aff7854dd623643a1d76676508dbb9265a4c3bc1.tar.lz gsoc2013-epiphany-aff7854dd623643a1d76676508dbb9265a4c3bc1.tar.xz gsoc2013-epiphany-aff7854dd623643a1d76676508dbb9265a4c3bc1.tar.zst gsoc2013-epiphany-aff7854dd623643a1d76676508dbb9265a4c3bc1.zip |
ephy-session: Remove EPHY_SESSION_CMD_OPEN_URIS
Add ephy_session_open_uris() instead and use it from EphyShell instead
of scheduling a command.
https://bugzilla.gnome.org/show_bug.cgi?id=641739
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ephy-session-test.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/ephy-session-test.c b/tests/ephy-session-test.c index 554544d25..5c9863245 100644 --- a/tests/ephy-session-test.c +++ b/tests/ephy-session-test.c @@ -237,12 +237,7 @@ open_uris_after_loading_session (const char** uris, int final_num_windows) * command - it should bail after noticing there are windows * already. */ - ephy_session_queue_command (session, - EPHY_SESSION_CMD_OPEN_URIS, - NULL, - uris, - user_time, - FALSE); + ephy_session_open_uris (session, uris, 0, user_time); while (gtk_events_pending ()) gtk_main_iteration_do (FALSE); |