[Xfce4-commits] <midori:master> Pass null cancellable to Soup.Address.resolve_sync
Christian Dywan
noreply at xfce.org
Sun Nov 18 19:08:03 CET 2012
Updating branch refs/heads/master
to 3868badbdcb922067b0407cf1eb591d746b4b75f (commit)
from b724845b7ff341b5aa48a97c93d92a166403c3c8 (commit)
commit 3868badbdcb922067b0407cf1eb591d746b4b75f
Author: Christian Dywan <christian at twotoasts.de>
Date: Sun Nov 18 18:58:49 2012 +0100
Pass null cancellable to Soup.Address.resolve_sync
The argument isn't optional in older Soup Vala bindings.
tests/tab.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tests/tab.vala b/tests/tab.vala
index 85cb54c..42743f9 100644
--- a/tests/tab.vala
+++ b/tests/tab.vala
@@ -123,7 +123,7 @@ void tab_special () {
/* FIXME assert (!tab.can_save ()); */
var test_address = new Soup.Address ("127.0.0.1", Soup.ADDRESS_ANY_PORT);
- test_address.resolve_sync ();
+ test_address.resolve_sync (null);
var test_server = new Soup.Server ("interface", test_address, null);
string test_url = "http://%s:%u".printf (test_address.get_physical (), test_server.get_port ());
test_server.run_async ();
More information about the Xfce4-commits
mailing list