diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-12-05 01:57:48 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-12-05 01:57:48 +0100 |
| commit | 4f0779fd3cd5951698d537c721dc17e85f15a681 (patch) | |
| tree | 6f6f95372e53f50a9ab6335ec633993e7533cdf1 /lib/gui | |
| parent | 685f45442990ede7b2b3bc92177e419d9de7aad3 (diff) | |
| download | enigma2-4f0779fd3cd5951698d537c721dc17e85f15a681.tar.gz enigma2-4f0779fd3cd5951698d537c721dc17e85f15a681.zip | |
small code cleanup, fix memleaks
refs #537
Diffstat (limited to 'lib/gui')
| -rw-r--r-- | lib/gui/esubtitle.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/gui/esubtitle.h b/lib/gui/esubtitle.h index 2b0ec8ff..cdad7286 100644 --- a/lib/gui/esubtitle.h +++ b/lib/gui/esubtitle.h @@ -23,7 +23,7 @@ struct ePangoSubtitlePageElement struct ePangoSubtitlePage { - pts_t show_pts; + pts_t m_show_pts; int m_timeout; /* in milliseconds */ std::vector<ePangoSubtitlePageElement> m_elements; void clear() { m_elements.clear(); } @@ -31,15 +31,13 @@ struct ePangoSubtitlePage struct eVobSubtitlePage { - pts_t show_pts; + pts_t m_show_pts; int m_timeout; /* in milliseconds */ ePtr<gPixmap> m_pixmap; }; class eDVBTeletextSubtitlePage; -class eDVBPangoSubtitlePage; -class ePangoSubtitlePage; -class eVobSubtitlePage; +class eDVBSubtitlePage; class eSubtitleWidget: public eWidget, public Object { |
