summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2019-03-20 08:34:33 +0100
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2019-03-20 14:51:27 +0100
commit89d80ffc52086610f188df345f90e04a5539f5c1 (patch)
treea92aebdd994a97317a768e12ccc38d32393f0358
parentefb05a3ac867746e5956f2990ce4957a3d04708e (diff)
downloadefl-89d80ffc52086610f188df345f90e04a5539f5c1.tar.gz
efl_con: fixup copy'n paste error
please see https://phab.enlightenment.org/D8411#151797, it appears here was a copy and paste error. This fixes the ecore_con test suite Reviewed-by: YeongJong Lee <yj34.lee@samsung.com> Differential Revision: https://phab.enlightenment.org/D8419
-rw-r--r--src/lib/ecore_con/efl_net_dialer_simple.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ecore_con/efl_net_dialer_simple.c b/src/lib/ecore_con/efl_net_dialer_simple.c
index 2944d761ea..111874e8df 100644
--- a/src/lib/ecore_con/efl_net_dialer_simple.c
+++ b/src/lib/ecore_con/efl_net_dialer_simple.c
@@ -68,7 +68,7 @@ _efl_net_dialer_simple_efl_object_invalidate(Eo *o, Efl_Net_Dialer_Simple_Data *
if (inner_io)
{
efl_event_callback_forwarder_del(inner_io, EFL_NET_DIALER_EVENT_DIALER_ERROR, o);
- efl_event_callback_forwarder_del(inner_io, EFL_NET_DIALER_EVENT_DIALER_CONNECTED, o);
+ efl_event_callback_forwarder_del(inner_io, EFL_NET_DIALER_EVENT_DIALER_RESOLVED, o);
efl_event_callback_forwarder_del(inner_io, EFL_NET_DIALER_EVENT_DIALER_CONNECTED, o);
if (efl_parent_get(inner_io) == o)
efl_parent_set(inner_io, NULL);
@@ -98,7 +98,7 @@ _efl_net_dialer_simple_efl_io_buffered_stream_inner_io_set(Eo *o, Efl_Net_Dialer
EINA_SAFETY_ON_FALSE_RETURN(efl_isa(io, EFL_NET_DIALER_INTERFACE));
efl_io_buffered_stream_inner_io_set(efl_super(o, MY_CLASS), io);
efl_event_callback_forwarder_add(io, EFL_NET_DIALER_EVENT_DIALER_ERROR, o);
- efl_event_callback_forwarder_add(io, EFL_NET_DIALER_EVENT_DIALER_CONNECTED, o);
+ efl_event_callback_forwarder_add(io, EFL_NET_DIALER_EVENT_DIALER_RESOLVED, o);
efl_event_callback_forwarder_add(io, EFL_NET_DIALER_EVENT_DIALER_CONNECTED, o);
/* apply pending dialer values */
if (pd->pending.proxy_url)