shell: Add missing cases to switch statements for animations and fading

This fixes two GCC warnings when compiling with -Wswitch-enum
-Wswitch-default, and makes it clearer that those cases have been
thought about explicitly when writing the code, rather than just being
forgotten.
This commit is contained in:
Philip Withnall 2013-11-25 18:01:32 +00:00 committed by Kristian Høgsberg
parent 0f640e219c
commit 4a86a0a57b

View file

@ -3978,6 +3978,8 @@ shell_fade_done(struct weston_view_animation *animation, void *data)
case FADE_OUT:
lock(shell);
break;
default:
break;
}
}
@ -4379,6 +4381,7 @@ map(struct desktop_shell *shell, struct shell_surface *shsurf,
case ANIMATION_ZOOM:
weston_zoom_run(shsurf->view, 0.5, 1.0, NULL, NULL);
break;
case ANIMATION_NONE:
default:
break;
}