From bb4ad13024a0ec9922e3b1934250ff50196f3285 Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Thu, 29 Jun 2017 10:47:32 +0900 Subject: [PATCH] Add missing break statement in switch-case statements - In image-visual.cpp, some break statement is missing. Change-Id: I378677aa888806f63c97cb6f68e81df5e3e1d3f3 Signed-off-by: Seoyeon Kim --- dali-toolkit/internal/visuals/image/image-visual.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dali-toolkit/internal/visuals/image/image-visual.cpp b/dali-toolkit/internal/visuals/image/image-visual.cpp index de7b3b8..d050442 100644 --- a/dali-toolkit/internal/visuals/image/image-visual.cpp +++ b/dali-toolkit/internal/visuals/image/image-visual.cpp @@ -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; } } } -- 2.7.4