Cedric BAIL
2018-12-07 12:32:13 UTC
xartigas pushed a commit to branch master.
http://git.enlightenment.org/core/efl.git/commit/?id=2bc28da2e3545b78ea684962c606c80e1cf08768
commit 2bc28da2e3545b78ea684962c606c80e1cf08768
Author: Cedric BAIL <***@osg.samsung.com>
Date: Fri Dec 7 13:22:31 2018 +0100
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
*
--
http://git.enlightenment.org/core/efl.git/commit/?id=2bc28da2e3545b78ea684962c606c80e1cf08768
commit 2bc28da2e3545b78ea684962c606c80e1cf08768
Author: Cedric BAIL <***@osg.samsung.com>
Date: Fri Dec 7 13:22:31 2018 +0100
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
*
--