[mythtv-commits] Ticket #5596: port libmyth to Qt4

MythTV mythtv at cvs.mythtv.org
Tue Sep 16 07:20:46 UTC 2008


#5596: port libmyth to Qt4
---------------------+------------------------------------------------------
 Reporter:  danielk  |        Owner:  danielk
     Type:  task     |       Status:  new    
 Priority:  minor    |    Milestone:  0.22   
Component:  mythtv   |      Version:  head   
 Severity:  medium   |   Resolution:         
  Mlocked:  0        |  
---------------------+------------------------------------------------------

Comment(by mythdev at telfort.nl):

 The last patch does not compile, because in the header it says:

 {{{
  static const QString           kUDEV_FIFO;
 }}}

 And the cpp says:

 {{{
   const char * MediaMonitorUnix::kUDEV_FIFO = "/tmp/mythtv_media";
 }}}

 So the patch would be:

 {{{
 Index: libs/libmyth/mediamonitor-unix.h
 ===================================================================
 --- libs/libmyth/mediamonitor-unix.h    (revision 18300)
 +++ libs/libmyth/mediamonitor-unix.h    (working copy)
 @@ -23,7 +23,7 @@

    protected:
      int                          m_fifo;
 -    static const QString         kUDEV_FIFO;
 +    static const char *          kUDEV_FIFO;
  };

  #endif // MYTH_MEDIA_MONITOR_H
 }}}

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/5596#comment:10>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list