Add missing break statement in switch-case statements 64/136264/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Thu, 29 Jun 2017 01:47:32 +0000 (10:47 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Thu, 29 Jun 2017 01:49:03 +0000 (10:49 +0900)
- In image-visual.cpp, some break statement is missing.

Change-Id: I378677aa888806f63c97cb6f68e81df5e3e1d3f3
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
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;
     }
   }
 }