summaryrefslogtreecommitdiff
path: root/ElmSharp/ElmSharp
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-04-27 07:26:32 +0000
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>2017-04-27 07:26:32 +0000
commit4b6e15f680e71ef222e7b5f4257449189a349c8e (patch)
tree4c5d957e9ebac5574289fbca164df1ef9ff98e00 /ElmSharp/ElmSharp
parent9b6ea52ab2ddaffe70dc77b48d7a7ffe704a6faa (diff)
parent55e5b66c3a7667f0ebddc4554032142c0b8302d3 (diff)
downloadelm-sharp-4b6e15f680e71ef222e7b5f4257449189a349c8e.tar.gz
elm-sharp-4b6e15f680e71ef222e7b5f4257449189a349c8e.tar.bz2
elm-sharp-4b6e15f680e71ef222e7b5f4257449189a349c8e.zip
Merge "Fixd handle issue and interop function" into tizen
Diffstat (limited to 'ElmSharp/ElmSharp')
-rwxr-xr-xElmSharp/ElmSharp/EvasObject.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ElmSharp/ElmSharp/EvasObject.cs b/ElmSharp/ElmSharp/EvasObject.cs
index 564cb82..f885c0b 100755
--- a/ElmSharp/ElmSharp/EvasObject.cs
+++ b/ElmSharp/ElmSharp/EvasObject.cs
@@ -116,7 +116,7 @@ namespace ElmSharp
if (_renderPostCallback == null)
{
_renderPostCallback = new Interop.Evas.EvasCallback((o, e, d) => _renderPost?.Invoke(this, EventArgs.Empty));
- Interop.Evas.evas_event_callback_add(Interop.Evas.evas_object_evas_get(Handle), Interop.Evas.ObjectCallbackType.RenderPost, _renderPostCallback, IntPtr.Zero);
+ Interop.Evas.evas_event_callback_add(Interop.Evas.evas_object_evas_get(RealHandle), Interop.Evas.ObjectCallbackType.RenderPost, _renderPostCallback, IntPtr.Zero);
}
}
remove
@@ -124,7 +124,7 @@ namespace ElmSharp
_renderPost -= value;
if (_renderPost?.GetInvocationList().Length == 0)
{
- Interop.Evas.evas_event_callback_del(Interop.Evas.evas_object_evas_get(Handle), Interop.Evas.ObjectCallbackType.RenderPost, _renderPostCallback);
+ Interop.Evas.evas_event_callback_del(Interop.Evas.evas_object_evas_get(RealHandle), Interop.Evas.ObjectCallbackType.RenderPost, _renderPostCallback);
_renderPostCallback = null;
}
}