-
Notifications
You must be signed in to change notification settings - Fork 254
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
[NUI] Remove basehandle usage at Accessibility static #5675
[NUI] Remove basehandle usage at Accessibility static #5675
Conversation
@Seoyeon2Kim @lol-github @aswigon @m-bialota |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. I've just checked that GetInstanceSafely<T>
only requires T
to be a subclass of BaseHandle
, but its parameter can simply be object
, so there should be no semantic change with this patch.
public static T GetInstanceSafely<T>(this object wrapper, IntPtr cPtr) where T : BaseHandle
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
b77fce5
to
b422c07
Compare
The TizenFX master branch has been changed for API12(tizen_9.0). |
Since we try to resolve some unusual behavior of BaseHandle, the dummyHandle in Accessibility can give us some confuse logs. Actually, we don't need to hold it as BaseHandle type. we only need this as object type. So, let we make it as object, instead of BaseHandle. Signed-off-by: Eunki, Hong <[email protected]>
f494fc3
to
40538ce
Compare
Hard reset done :D |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me
Since we try to resolve some unusual behavior of BaseHandle, the dummyHandle in Accessibility can give us some confuse logs.
Actually, we don't need to hold it as BaseHandle type. we only need this as object type. So, let we make it as object, instead of BaseHandle.