summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2016-10-18 10:00:56 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2016-10-18 10:00:56 +0200
commitab0b77acee82e37fe91ac2c6879b49ec4d50e936 (patch)
tree07d904594c86cc73e92285580c98913912baa4ea
parentebb1927aafb2fca016370b3d990f5a73afa598b2 (diff)
Avoid implicit .begin warnings
-rw-r--r--libzeitgeist/log.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/libzeitgeist/log.vala b/libzeitgeist/log.vala
index 67293818..82c7584a 100644
--- a/libzeitgeist/log.vala
+++ b/libzeitgeist/log.vala
@@ -229,7 +229,7 @@ public class Log : QueuedProxyWrapper
public void insert_event_no_reply (Event event)
throws Error
{
- insert_event (event);
+ insert_event.begin (event);
}
/**
@@ -246,7 +246,7 @@ public class Log : QueuedProxyWrapper
public void insert_events_no_reply (GenericArray<Event> events)
throws Error
{
- insert_events (events);
+ insert_events.begin (events);
}
/**