Skip to content

Commit

Permalink
[NUI] bug fixed about cMemoryOwn
Browse files Browse the repository at this point in the history
refer : Samsung#5603
  • Loading branch information
JoogabYun authored and hinohie committed Oct 25, 2023
1 parent 9ac9e93 commit 5b59d58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Tizen.NUI/src/public/Events/Hover.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ internal Hover(Hover other) : this(Interop.Hover.NewHover(Hover.getCPtr(other)),
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}

internal Hover(global::System.IntPtr cPtr, bool cMemoryOwn) : this(cPtr, cMemoryOwn, true)
internal Hover(global::System.IntPtr cPtr, bool cMemoryOwn) : this(cPtr, cMemoryOwn, cMemoryOwn)
{
}

Expand Down
2 changes: 1 addition & 1 deletion src/Tizen.NUI/src/public/Events/Touch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ internal Touch(Touch other) : this(Interop.Touch.NewTouch(Touch.getCPtr(other)),
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}

internal Touch(global::System.IntPtr cPtr, bool cMemoryOwn) : this(cPtr, cMemoryOwn, true)
internal Touch(global::System.IntPtr cPtr, bool cMemoryOwn) : this(cPtr, cMemoryOwn, cMemoryOwn)
{
}

Expand Down
2 changes: 1 addition & 1 deletion src/Tizen.NUI/src/public/Events/Wheel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public Wheel(Wheel.WheelType type, int direction, uint modifiers, Vector2 point,
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}

internal Wheel(global::System.IntPtr cPtr, bool cMemoryOwn) : this(cPtr, cMemoryOwn, true)
internal Wheel(global::System.IntPtr cPtr, bool cMemoryOwn) : this(cPtr, cMemoryOwn, cMemoryOwn)
{
}

Expand Down
2 changes: 1 addition & 1 deletion src/Tizen.NUI/src/public/Input/Key.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ internal Key(string keyName, string keyString, int keyCode, int keyModifier, uin
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}

internal Key(global::System.IntPtr cPtr, bool cMemoryOwn) : this(cPtr, cMemoryOwn, true)
internal Key(global::System.IntPtr cPtr, bool cMemoryOwn) : this(cPtr, cMemoryOwn, cMemoryOwn)
{
}

Expand Down

0 comments on commit 5b59d58

Please sign in to comment.