~ubuntu-branches/ubuntu/wily/me-tv/wily-proposed

« back to all changes in this revision

Viewing changes to src/epg_event.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Evans
  • Date: 2009-06-27 00:46:22 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090627004622-q0zvsie6ioa60vh3
Tags: 0.9.4-0ubuntu1
* New upstream release (LP: #379706)
  - Fix to stop EPG update crashing the application
    after faulty save (LP: #72872)
  - Fixed spin buttons from GtkBuilder conversion (LP: #382197) 
  - Fixed icon on application popup menu (LP: #379685)
  - Fixed compiling of me-tv-0.8.12 fails on Fedora 11 (LP: #377020)
  - Fixed Failed to lock to channel at boot (LP: #377050)
  - Increased timeout to 5 seconds again (LP: #371165)
  - Fixed me-tv unusually slow, often freezes (LP: #351510)
  - Fixed channel persistence (LP: #361514)
  - Fix for forward slashes in description (LP: #359710)
  - Fixed Must create .me-tv directory manually (LP: #353796)
  - Fixed audio stream can't be changed (LP: #350402)
* debian/control:
  - Removed dependency libxine1-ffmpeg, libxine1-x
  - Removed libglademm-2.4-dev Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
class EpgEventText
28
28
{
29
29
public:
30
 
        guint epg_event_text_id;
31
 
        guint epg_event_id;
32
 
        gboolean is_extended;
33
 
        Glib::ustring language;
34
 
        Glib::ustring title;
35
 
        Glib::ustring description;
 
30
        guint                   epg_event_text_id;
 
31
        guint                   epg_event_id;
 
32
        gboolean                is_extended;
 
33
        Glib::ustring   language;
 
34
        Glib::ustring   title;
 
35
        Glib::ustring   description;
 
36
                
 
37
        EpgEventText();
36
38
};
37
39
 
38
40
typedef std::list<EpgEventText> EpgEventTextList;
48
50
        gboolean                        save;
49
51
        EpgEventTextList        texts;
50
52
        
 
53
        EpgEvent();
 
54
                
51
55
        guint get_end_time() const { return start_time + duration; }
52
56
        Glib::ustring get_title() const;
53
57
        Glib::ustring get_description() const;