Mailing List archive

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

[vdr] Re: AIO 10.04





> menu.c: In method `enum eOSState cMenuMain::ProcessKey(eKeys)':
> menu.c:2671: warning: enumeration value `kUp' not handled in switch
> menu.c:2671: warning: enumeration value `kDown' not handled in switch
> menu.c:2671: warning: enumeration value `kOk' not handled in switch
> menu.c:2671: warning: enumeration value `kBack' not handled in switch

i think this is the same problem as solved in one of the earlier mails...
hope this helps :)

--------------------------------

Date: Mon, 8 Apr 2002 21:08:07 +0200
Subject: [vdr] Re: AIO 08.04


the problem is a wrong IFDEF:

------------------BAD--------------------------
#ifdef DVDSUPPORT
               case kYellow: if (!HasSubMenu()) {
------------------BAD--------------------------

----------------CORRECT------------------------
               case kYellow: if (!HasSubMenu()) {
#ifdef DVDSUPPORT
----------------CORRECT------------------------




Home | Main Index | Thread Index