X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-swig%2Fproperty-wrapper.rb;h=2701826c78199b5b6679e931e6d69550af681ecc;hb=665d92f07e3e06e1db65a473c6eb6869dc476c03;hp=78cb1f2f70443ae94e334cdc5989d41af5af3e4c;hpb=1e86d6f1a754a11410f1d5b89a4520757cb53ff5;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-swig/property-wrapper.rb b/plugins/dali-swig/property-wrapper.rb index 78cb1f2..2701826 100755 --- a/plugins/dali-swig/property-wrapper.rb +++ b/plugins/dali-swig/property-wrapper.rb @@ -314,7 +314,7 @@ def writeCSharpData #exception case <<< #Tooltip gives swig build error - if( property.name == "Tooltip" ) + if( property.name == "Tooltip" || property.name == "Color") next end #exception case >>> @@ -503,13 +503,16 @@ def writeDaliToolkitProperties #puts(className); #puts(fileName); - # Get the property information ( name, type, read/writeable) + # Get the property information ( name, type, read/writeable) propertyInfo = extractToolkitPropertyInfo( macro ); # get or create a new DALi class item which stores the property information classItem = getDaliClassItem( className ) - classItem.properties.push( propertyInfo ) + # exclusion of control-data-impl + if ( className != "ControlData" ) + classItem.properties.push( propertyInfo ) + end end