Skip to content

Commit

Permalink
Const correctness fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Jan 30, 2012
1 parent a2924bf commit d0c07d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/videodisplayprofile.h
Expand Up @@ -86,7 +86,7 @@ class MTV_PUBLIC VideoDisplayProfile

void SetInput(const QSize &size);
void SetOutput(float framerate);
float GetOutput(void) { return last_rate; }
float GetOutput(void) const { return last_rate; }

void SetVideoRenderer(const QString &video_renderer);
bool CheckVideoRendererGroup(const QString renderer);
Expand Down

0 comments on commit d0c07d9

Please sign in to comment.