some fixes for twisted
[enigma2.git] / lib / service / servicedvb.h
index 2785ce2a567bae6993371af2d9fe6177747e283a..5dbd47b71be106225cd6d035dcb8545b71ccd9e4 100644 (file)
@@ -142,6 +142,7 @@ private:
        Signal2<void,iPlayableService*,int> m_event;
        
        int m_is_pvr, m_is_paused, m_timeshift_enabled, m_timeshift_active;
+       int m_first_program_info;
        
        std::string m_timeshift_file;
        int m_timeshift_fd;
@@ -171,7 +172,7 @@ private:
                
                bool operator < (const struct cueEntry &o) const
                {
-                       return what < o.what;
+                       return where < o.where;
                }
                cueEntry(const pts_t &where, unsigned int what) :
                        where(where), what(what)