Kaydet (Commit) ba75754c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#705138 Missing break in switch

Change-Id: Ia7f2211bb4a8c006259c9db6a2eac64593f8e91e
üst 1b8179c5
...@@ -498,6 +498,7 @@ Graphic GraphicFilterEmboss::GetFilteredGraphic( const Graphic& rGraphic, ...@@ -498,6 +498,7 @@ Graphic GraphicFilterEmboss::GetFilteredGraphic( const Graphic& rGraphic,
switch( maCtlLight.GetActualRP() ) switch( maCtlLight.GetActualRP() )
{ {
default: OSL_FAIL("svx::GraphicFilterEmboss::GetFilteredGraphic(), unknown Reference Point!" ); default: OSL_FAIL("svx::GraphicFilterEmboss::GetFilteredGraphic(), unknown Reference Point!" );
/* Fall through */
case( RP_LT ): nAzim = 4500, nElev = 4500; break; case( RP_LT ): nAzim = 4500, nElev = 4500; break;
case( RP_MT ): nAzim = 9000, nElev = 4500; break; case( RP_MT ): nAzim = 9000, nElev = 4500; break;
case( RP_RT ): nAzim = 13500, nElev = 4500; break; case( RP_RT ): nAzim = 13500, nElev = 4500; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment