Ticket #5423: libs_libmythtv-compiler-parse-error-jobsqueue.h.patch

File libs_libmythtv-compiler-parse-error-jobsqueue.h.patch, 969 bytes (added by Erik Hovland <erik@…>, 17 years ago)

removes class scoping from ctor call

  • libs/libmythtv/jobqueue.h

    A syntactically dodgey constructor call causes g++ to
    
    From: Erik Hovland <erik@hovland.org>
    
    have a parsing error. Which keeps the static analysis
    tool from being able to analyze the file.
    ---
    
     libs/libmythtv/jobqueue.h |    2 +-
     1 files changed, 1 insertions(+), 1 deletions(-)
    
    diff --git a/libs/libmythtv/jobqueue.h b/libs/libmythtv/jobqueue.h
    index 0bc7414..484dabf 100644
    a b class MPUBLIC JobQueue : public QObject  
    109109                         QDateTime starttime, QString args = "",
    110110                         QString comment = "", QString host = "",
    111111                         int flags = 0, int status = JOB_QUEUED,
    112                          QDateTime schedruntime = QDateTime::QDateTime());
     112                         QDateTime schedruntime = QDateTime());
    113113
    114114    static bool QueueJobs(int jobTypes, QString chanid,
    115115                         QDateTime starttime, QString args = "",