From: Kimmo Hoikka Date: Fri, 6 Jan 2017 14:16:46 +0000 (-0800) Subject: Merge "Make Up calls to control consistent so they are called at the end by derived... X-Git-Tag: dali_1.2.22~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd2db445fc95fed65cb9d966e672cb6976a10d0d;hp=1e7f2e72fcc37576c754ca2ed563ece458942960;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git Merge "Make Up calls to control consistent so they are called at the end by derived classes" into devel/master --- diff --git a/plugins/dali-swig/property-wrapper.rb b/plugins/dali-swig/property-wrapper.rb index 4abc698..fe2e91c 100755 --- a/plugins/dali-swig/property-wrapper.rb +++ b/plugins/dali-swig/property-wrapper.rb @@ -335,9 +335,9 @@ def writeCSharpData hasChildProperties = true end - property.csharpGetter =" public #{propertyType} #{property.name} \n"\ - " { \n"\ - " get \n" \ + property.csharpGetter =" public #{propertyType} #{property.name}\n"\ + " {\n"\ + " get\n" \ " {\n"\ " #{tempDeclaration}\n"\ " GetProperty( #{propertyName}).Get( #{propertyArg} temp );\n"\ @@ -346,8 +346,8 @@ def writeCSharpData if property.writable #text.SetProperty(TextLabel.Property.HORIZONTAL_ALIGNMENT, new Property.Value("CENTER")); - property.csharpSetter = " set \n" \ - " { \n"\ + property.csharpSetter = " set\n" \ + " {\n"\ " SetProperty( #{propertyName}, new Dali.Property.Value( value ) );\n" \ " }\n"\ " }\n"