Skip to content

Commit

Permalink
Remove unnecessary mutable attribute for TeletextReader member variab…
Browse files Browse the repository at this point in the history
…les.
  • Loading branch information
daniel-kristjansson committed Jan 28, 2012
1 parent bc0fe48 commit 1ae89cd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mythtv/libs/libmythtv/teletextreader.h
Expand Up @@ -116,16 +116,16 @@ class TeletextReader
const TeletextSubPage *FindSubPageInternal(int,int,int) const;
const TeletextPage *FindPageInternal(int,int) const;

mutable int m_curpage;
mutable int m_cursubpage;
mutable bool m_curpage_showheader;
mutable bool m_curpage_issubtitle;
int m_curpage;
int m_cursubpage;
bool m_curpage_showheader;
bool m_curpage_issubtitle;
int m_pageinput[3];
bool m_transparent;
bool m_revealHidden;
uint8_t m_header[40];
mutable bool m_header_changed;
mutable bool m_page_changed;
bool m_header_changed;
bool m_page_changed;
TeletextMagazine m_magazines[8];
unsigned char m_bitswap[256];
int m_fetchpage;
Expand Down

0 comments on commit 1ae89cd

Please sign in to comment.