GNOME Bugzilla – Bug 781449
Undefined reference to `g_task_new_finish'
Last modified: 2017-04-19 08:39:12 UTC
This happen when one attempt to create a new `GLib.Task' object. var task = yield new GLib.Task (null, null); The signature should not be async and the expected use case is the following: var task = new GLib.Task (null, null, (obj, result) => { var bool_result = result.propagate_boolean (); }); task.return_boolean (true);
Created attachment 350001 [details] [review] Fix the constructor and add appropriate metadata
Created attachment 350003 [details] [review] gio-2.0: Fix GLib.Task constructor
Comment on attachment 350003 [details] [review] gio-2.0: Fix GLib.Task constructor commit ee7aa700d56818e9fe4d8396a97d44ce17815f72 Author: Rico Tzschichholz <ricotz@ubuntu.com> Date: Tue Apr 18 16:38:04 2017 +0200 gio-2.0: Fix GLib.Task constructor