From 2bc28da2e3545b78ea684962c606c80e1cf08768 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Fri, 7 Dec 2018 13:22:31 +0100 Subject: [PATCH] eo: fix efl_future_then example. Summary: Depends on D7393 Reviewers: segfaultxavi Reviewed By: segfaultxavi Subscribers: #reviewers, #committers Tags: #efl Maniphest Tasks: T7472 Differential Revision: https://phab.enlightenment.org/D7423 --- src/lib/eo/Eo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h index e953ac2709..ca133dfb4c 100644 --- a/src/lib/eo/Eo.h +++ b/src/lib/eo/Eo.h @@ -522,7 +522,7 @@ typedef struct _Efl_Future_Cb_Desc { * //Usually this would be done with an eina_future_race() of the download promise and a timeout promise, * //however the following example is useful to illustrate efl_key_data_set() usage. * efl_key_data_set(downloader, "timer", timer); - * eina_future_then_from_desc(f, efl_future_cb(.success = _file_ok, .error = _file_err, .success_type = EINA_VALUE_TYPE_STRING, .free = downloader_free)); + * efl_future_then(downloader, f, .success = _file_ok, .error = _file_err, .success_type = EINA_VALUE_TYPE_STRING, .free = downloader_free); * } * @endcode *