From patchwork Sun May 29 16:36:38 2005 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Olivetti X-Patchwork-Id: 11893 Received: from [213.97.27.232] (helo=232.Red-213-97-27.pooles.rima-tde.net) by www.linuxtv.org with esmtp (Exim 4.34) id 1DcQod-0002Ra-H6 for vdr@linuxtv.org; Sun, 29 May 2005 18:39:07 +0200 Received: from [127.0.0.1] (localhost.localdomain [127.0.0.1]) by 232.Red-213-97-27.pooles.rima-tde.net (Postfix) with ESMTP id B6D4F18B2E01 for ; Sun, 29 May 2005 18:36:48 +0200 (CEST) Message-ID: <4299EF96.8090806@ventoso.org> Date: Sun, 29 May 2005 18:36:38 +0200 From: Luca Olivetti User-Agent: Mozilla Thunderbird 0.9 (X11/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Klaus Schmidinger's VDR X-Enigmail-Version: 0.89.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Subject: [vdr] [PATCH] yaepg for vdr 1.3.25 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Klaus Schmidinger's VDR List-Id: Klaus Schmidinger's VDR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 May 2005 16:39:08 -0000 Status: O X-Status: X-Keywords: X-UID: 2575 Patch attached. Bye --- yaepg.c.orig 2005-05-29 18:11:23.103424566 +0200 +++ yaepg.c 2005-05-29 18:25:03.412214269 +0200 @@ -658,12 +658,12 @@ time_t startTime; public: - cNoInfoEvent(time_t, tChannelID); + cNoInfoEvent(time_t); ~cNoInfoEvent(); }; -cNoInfoEvent::cNoInfoEvent(time_t startTime, tChannelID chanId) - : cEvent(chanId, 0) +cNoInfoEvent::cNoInfoEvent(time_t startTime) + : cEvent(0) { SetStartTime(startTime); SetDuration(9000); @@ -1479,7 +1479,7 @@ * If we didn't find an event at this time try * make a "No Info" evnet. */ - currEvent = new cNoInfoEvent(grTime, chans[i]->GetChanID()); + currEvent = new cNoInfoEvent(grTime); if (currEvent == NULL) { fprintf(stderr, "NULL\n"); }