Merge "Add missing break statement in switch-case statements" into devel/master
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Thu, 29 Jun 2017 10:10:00 +0000 (10:10 +0000)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Thu, 29 Jun 2017 10:10:01 +0000 (10:10 +0000)
dali-toolkit/internal/visuals/image/image-visual.cpp

index de7b3b8..d050442 100644 (file)
@@ -470,6 +470,7 @@ void ImageVisual::DoSetProperty( Property::Index index, const Property::Value& v
     {
       bool atlasing = false;
       mAttemptAtlasing = value.Get( atlasing );
+      break;
     }
 
     case Toolkit::DevelImageVisual::Property::ALPHA_MASK_URL:
@@ -479,6 +480,7 @@ void ImageVisual::DoSetProperty( Property::Index index, const Property::Value& v
       {
         mAlphaMaskUrl = VisualUrl( alphaUrl );
       }
+      break;
     }
   }
 }