Change property key and value name 06/57106/1 accepted/tizen_ivi accepted/tizen/common/20160222.162211 accepted/tizen/ivi/20160218.022943 accepted/tizen/mobile/20160122.080632 submit/tizen_common/20160222.141210 submit/tizen_ivi/20160217.000000 submit/tizen_ivi/20160217.000001 submit/tizen_mobile/20160122.070055
authortaeyoon <taeyoon0.lee@samsung.com>
Fri, 15 Jan 2016 06:30:14 +0000 (15:30 +0900)
committertaeyoon <taeyoon0.lee@samsung.com>
Fri, 15 Jan 2016 06:33:18 +0000 (15:33 +0900)
  eg. "renderer-type" to "rendererType"

Change-Id: If01a9e6861a7f729ecb1e274edc4e4323166f5be

util/util-color-image.cpp

index 696a93d..b5496e8 100755 (executable)
@@ -26,8 +26,8 @@ namespace ClusterHome3D
                
                Toolkit::ImageView imageView = Toolkit::ImageView::New();
                Property::Map solidColorProperty;
-               solidColorProperty.Insert( "renderer-type", "color-renderer" );
-               solidColorProperty.Insert( "blend-color",color);
+               solidColorProperty.Insert( "rendererType", "colorRenderer" );
+               solidColorProperty.Insert( "blendColor",color);
                imageView.SetProperty( Toolkit::ImageView::Property::IMAGE, solidColorProperty );
                return imageView;
        }
@@ -39,8 +39,8 @@ namespace ClusterHome3D
                imageView.SetParentOrigin(ParentOrigin::CENTER);
                imageView.SetPosition(0.0f, 0.0f, 0.5f);
                Property::Map solidColorProperty;
-               solidColorProperty.Insert( "renderer-type", "color-renderer" );
-               solidColorProperty.Insert( "blend-color",Vector4((float)(rand()%10)/10, (float)(rand()%10)/10, (float)(rand()%10)/10, 0.5f));
+               solidColorProperty.Insert( "rendererType", "colorRenderer" );
+               solidColorProperty.Insert( "blendColor",Vector4((float)(rand()%10)/10, (float)(rand()%10)/10, (float)(rand()%10)/10, 0.5f));
                imageView.SetProperty( Toolkit::ImageView::Property::IMAGE, solidColorProperty );
                return imageView;
        }