Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: small vdr replay problem



Dariush Forouher wrote:
> 
> Am Son, 2002-03-31 um 17.25 schrieb Klaus Schmidinger:
> > +  char h10 = '0' + (timeSearchTime >> 24);
> > +  char h1  = '0' + ((timeSearchTime & 0x00FF0000) >> 16);
> > +  char m10 = '0' + ((timeSearchTime & 0x0000FF00) >> 8);
> > +  char m1  = '0' + (timeSearchTime & 0x000000FF);
> 
> g++ -g -O2 -Wall -Woverloaded-virtual -m486 -c -DREMOTE_KBD
> -D_GNU_SOURCE -I VB/ost/include menu.c
> menu.c: In method `void cReplayControl::TimeSearchDisplay()':
> menu.c:3105: `timeSearchTime' undeclared (first use this function)
> menu.c:3105: (Each undeclared identifier is reported only once
> menu.c:3105: for each function it appears in.)
> 
> (patched against vdr vanilla)
> 
> Dariush

Sorry, I forgot the diff in menu.h:

--- menu.h      2002/03/16 09:51:10
+++ menu.h      2002/03/31 13:53:23
@@ -116,7 +116,7 @@
   int lastCurrent, lastTotal;
   time_t timeoutShow;
   bool timeSearchActive, timeSearchHide;  
-  int timeSearchHH, timeSearchMM, timeSearchPos;
+  int timeSearchTime, timeSearchPos;
   void TimeSearchDisplay(void);
   void TimeSearchProcess(eKeys Key);
   void TimeSearch(void);


Klaus
-- 
_______________________________________________________________

Klaus Schmidinger                       Phone: +49-8635-6989-10
CadSoft Computer GmbH                   Fax:   +49-8635-6989-40
Hofmark 2                               Email:   kls@cadsoft.de
D-84568 Pleiskirchen, Germany           URL:     www.cadsoft.de
_______________________________________________________________



Home | Main Index | Thread Index