Skip to content

Commit

Permalink
Fix typo in member name.
Browse files Browse the repository at this point in the history
Forgot FullScreen getter
  • Loading branch information
jyavenard committed Jul 3, 2013
1 parent c11e856 commit beb6b1f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythui/mythnotification.h
Expand Up @@ -117,7 +117,7 @@ class MUI_PUBLIC MythNotification : public MythEvent
* this request may not be fullfilled should the theme not handle full screen
* notification
*/
void SetFullScreem(bool f) { m_fullScreen = f; }
void SetFullScreen(bool f) { m_fullScreen = f; }
/**
* contains a short description of the notification
*/
Expand All @@ -141,6 +141,7 @@ class MUI_PUBLIC MythNotification : public MythEvent
// Getter
int GetId(void) { return m_id; }
void *GetParent(void) { return m_parent; }
bool GetFullScreen(void) { return m_fullScreen; }
QString GetDescription(void) { return m_description; }
DMAP GetMetaData(void) { return m_metadata; }
int GetDuration(void) { return m_duration; };
Expand Down

0 comments on commit beb6b1f

Please sign in to comment.