X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-swig%2Fviews%2Fspin.cs;h=f4d6aec3940fad42171a2d691df67428d2fe97a8;hb=d6d362462e51eea645d7ec1fe1db3af58bb306a8;hp=06a02103ce8f3b4e2fe2d7817ef604698a528655;hpb=9b82688bddfb0f7799bdf73190032751360bd197;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-swig/views/spin.cs b/plugins/dali-swig/views/spin.cs index 06a0210..f4d6aec 100644 --- a/plugins/dali-swig/views/spin.cs +++ b/plugins/dali-swig/views/spin.cs @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,9 +52,10 @@ public class Spin : CustomView { // ViewRegistry registers control type with DALi type registery // also uses introspection to find any properties that need to be registered with type registry - ViewRegistry.Instance.Register("Spin", CreateInstance, typeof(Spin) ); + ViewRegistry.Instance.Register(CreateInstance, typeof(Spin) ); } - public Spin() : base(ViewWrapperImpl.CustomViewBehaviour.REQUIRES_KEYBOARD_NAVIGATION_SUPPORT | ViewWrapperImpl.CustomViewBehaviour.DISABLE_STYLE_CHANGE_SIGNALS) + + public Spin() : base(typeof(Spin).Name, ViewWrapperImpl.CustomViewBehaviour.REQUIRES_KEYBOARD_NAVIGATION_SUPPORT) { }