From e2a0efd88ce48698451a36fe9c15b390e7fdd73d Mon Sep 17 00:00:00 2001 From: Gary Buhrmaster Date: Mon, 2 Jul 2012 16:25:47 -0700 Subject: [PATCH] Add missing case statement Also added default. This file needs to have its formatting fixed to match MythTV standards. The switch statements in particular have wonky indentations and break; and such should be on separate lines. A task for later. Fixes #10764 Signed-off-by: Gavin Hurlbut --- mythtv/libs/libmythtv/videoouttypes.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mythtv/libs/libmythtv/videoouttypes.h b/mythtv/libs/libmythtv/videoouttypes.h index 3bae6f0deea..2c57fdf24cf 100644 --- a/mythtv/libs/libmythtv/videoouttypes.h +++ b/mythtv/libs/libmythtv/videoouttypes.h @@ -358,8 +358,11 @@ inline QString toXVString(PictureAttribute pictureattribute) ret = "XV_SATURATION"; break; case kPictureAttribute_Hue: ret = "XV_HUE"; break; + case kPictureAttribute_StudioLevels: case kPictureAttribute_Volume: - case kPictureAttribute_MAX: break; + case kPictureAttribute_MAX: + default: + break; } if (ret.isEmpty())