From patchwork Sun Sep 25 18:39:58 2005 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "C.Y.M" X-Patchwork-Id: 12039 Received: from c-24-10-6-146.hsd1.ca.comcast.net ([24.10.6.146] helo=nofear.bounceme.net) by www.linuxtv.org with esmtp (Exim 4.50) id 1EJbPV-0000Rk-0g for vdr@linuxtv.org; Sun, 25 Sep 2005 20:39:37 +0200 Received: from [10.1.1.66] (hades [10.1.1.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by nofear.bounceme.net (Postfix) with ESMTP id 07BF973534 for ; Sun, 25 Sep 2005 11:39:00 -0700 (PDT) Message-ID: <4336EEFE.8010206@syphir.sytes.net> Date: Sun, 25 Sep 2005 11:39:58 -0700 From: "C.Y.M" Organization: CooLNeT User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Vdr X-Enigmail-Version: 0.92.1.0 Subject: [vdr] Compile fix for undelete-0.0.2 and vdr-1.3.33 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: syphir@syphir.sytes.net, 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, 25 Sep 2005 18:39:37 -0000 Status: O X-Status: X-Keywords: X-UID: 5126 This seems to fix the compile problem. I hope that Recordings.Update is the correct function :) Regards, --- undelete-0.0.2/menuundelete.c.orig 2005-09-25 10:00:23.000000000 -0700 +++ undelete-0.0.2/menuundelete.c 2005-09-25 10:09:33.000000000 -0700 @@ -435,8 +435,12 @@ #if VDRVERSNUM >= 10311 if (SalvageRecording) +#if VDRVERSNUM >= 10333 + Recordings.Update(); +#else Recordings.TriggerUpdate(); #endif +#endif } eOSState cMenuUndelete::ProcessKey(eKeys Key)