Skip to content

Commit

Permalink
Add rsUnknown handling to toString(RecStatusType,uint) (clang++)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Dec 15, 2012
1 parent 46f5fb3 commit 14c4074
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mythtv/libs/libmyth/programtypes.cpp
Expand Up @@ -165,6 +165,8 @@ QString toString(RecStatusType recstatus, uint id)
case rsOtherTuning:
ret = QString::number(id);
break;
case rsUnknown:
break;
}

return (ret.isEmpty()) ? QString("-") : ret;
Expand Down

0 comments on commit 14c4074

Please sign in to comment.