Skip to content

Commit

Permalink
Add missing case statement
Browse files Browse the repository at this point in the history
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 <ghurlbut@mythtv.org>
  • Loading branch information
garybuhrmaster authored and Beirdo committed Jul 2, 2012
1 parent 0998b7a commit e2a0efd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mythtv/libs/libmythtv/videoouttypes.h
Expand Up @@ -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())
Expand Down

0 comments on commit e2a0efd

Please sign in to comment.