Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tizen.Core] Fix managing native handle of Event #6337

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Tizen.Core/Tizen.Core/Event.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void Emit(EventObject eventObject)
eventObject.Handle = IntPtr.Zero;
}

internal IntPtr Handle { get { return _handle; } set { _handle = value; } }
internal IntPtr Handle { get { return _handle; } }
internal IntPtr Source { get; set; }
internal int Id { get; set; }

Expand Down
3 changes: 1 addition & 2 deletions src/Tizen.Core/Tizen.Core/Task.cs
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ public void AddEvent(Event coreEvent)
throw new ArgumentNullException(nameof(coreEvent));
}

if (coreEvent.Handle == IntPtr.Zero)
if (coreEvent.Source != IntPtr.Zero)
{
throw new ArgumentException("The event is already added");
}
Expand All @@ -428,7 +428,6 @@ public void AddEvent(Event coreEvent)
}

coreEvent.Source = handle;
coreEvent.Handle = IntPtr.Zero;
}
}

Expand Down
Loading