projects
/
platform
/
core
/
csapi
/
tizenfx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2dbe15b
)
[Tizen] Add obsolete attribute for Create property of VisualBase
author
minho.sun
<minho.sun@samsung.com>
Mon, 14 Aug 2017 11:17:55 +0000
(20:17 +0900)
committer
minho.sun
<minho.sun@samsung.com>
Mon, 14 Aug 2017 11:17:56 +0000
(20:17 +0900)
This reverts commit
be0af0c1a6c1bdd826dcfad4454d38604657d6ff
.
Change-Id: Ie291fdb19cae3fbe9ea802dcf8f77deb1764ed9e
src/Tizen.NUI/src/public/VisualBase.cs
patch
|
blob
|
history
diff --git
a/src/Tizen.NUI/src/public/VisualBase.cs
b/src/Tizen.NUI/src/public/VisualBase.cs
index c36046215f545a66ba229c260c36236700a4d30c..eb7829f50f75b882943ba3fba38d24aa26ea3936 100755
(executable)
--- a/
src/Tizen.NUI/src/public/VisualBase.cs
+++ b/
src/Tizen.NUI/src/public/VisualBase.cs
@@
-185,8
+185,13
@@
namespace Tizen.NUI
/// <summary>
/// Create the property map representing this visual.
/// </summary>
+ [Obsolete("Please be caution! this will be readonly.")]
public PropertyMap Creation
{
+ set
+ {
+ CreatePropertyMap(value);
+ }
get
{
PropertyMap map = new PropertyMap();
@@
-194,6
+199,7
@@
namespace Tizen.NUI
return map;
}
}
+
internal void CreatePropertyMap(PropertyMap map)
{
NDalicPINVOKE.VisualBase_CreatePropertyMap(swigCPtr, PropertyMap.getCPtr(map));