summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpius.lee <pius.lee@samsung.com>2017-06-13 11:10:59 +0900
committerpius.lee <pius.lee@samsung.com>2017-06-14 11:25:53 +0900
commit5475315cba4b848f84b63854f22af605db5d43a8 (patch)
treed58b5829315645c5c5fe44db4090e202e3402da6
parent07698f1af82458a85f56882991f64bceb2d2215f (diff)
downloadelm-sharp-5475315cba4b848f84b63854f22af605db5d43a8.tar.gz
elm-sharp-5475315cba4b848f84b63854f22af605db5d43a8.tar.bz2
elm-sharp-5475315cba4b848f84b63854f22af605db5d43a8.zip
Change RealHandle, Handle, Parent Access modifier
RealHandle and Handle have to be needed on inherit some widget. So extended widget can't be made on another package until it is "internal". Parent has to be needed for find current window. elm sharp does not has method finding window except Parent tracing. Change-Id: I975a3d1f6144029a21b885276d5ab3037f8b8f00 Signed-off-by: pius.lee <pius.lee@samsung.com>
-rw-r--r--ElmSharp/ElmSharp/EvasObject.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/ElmSharp/ElmSharp/EvasObject.cs b/ElmSharp/ElmSharp/EvasObject.cs
index a927914..00a8471 100644
--- a/ElmSharp/ElmSharp/EvasObject.cs
+++ b/ElmSharp/ElmSharp/EvasObject.cs
@@ -31,15 +31,15 @@ namespace ElmSharp
private Interop.Eext.EextEventCallback _backButtonHandler;
private Interop.Eext.EextEventCallback _moreButtonHandler;
- internal IntPtr Handle { get; set; }
- internal EvasObject Parent { get; set; }
- internal IntPtr RealHandle
+ public IntPtr Handle { get; protected set; }
+ public EvasObject Parent { get; private set; }
+ public IntPtr RealHandle
{
get
{
return _realHandle == IntPtr.Zero ? Handle : _realHandle;
}
- set
+ protected set
{
_realHandle = value;
}