Ayuda Al compilar me Da error en ::Super

Post Reply
User avatar
ruben Dario
Posts: 986
Joined: Thu Sep 27, 2007 3:47 pm
Location: Colombia

Ayuda Al compilar me Da error en ::Super

Post by ruben Dario »

Saludos al forum

Estoy implementado este ejemplo en mi aplicacion. Este es lo que baje hbide-master

Trato de implementar el menu y me sale este error al compilar.

Todo lo que dice ::Super:? me da error

Code: Select all


METHOD Display() CLASS HbMenu
-......
return nil

//-----------------------------------------------------------------------------------------//

METHOD ProcessKey( nKey ) CLASS HbMenu

   do case
      case nKey == K_MWBACKWARD
         ::GoDown() 
         
      case nKey == K_MWFORWARD   
         ::GoUp()

      otherwise
         ::Super:ProcessKey( nKey )
   endcase
   
return nil   

 
Ruben Dario Gonzalez
Cali-Colombia
rubendariogd@hotmail.com - rubendariogd@gmail.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: Ayuda Al compilar me Da error en ::Super

Post by Antonio Linares »

Cambia ::Super por Super
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
ruben Dario
Posts: 986
Joined: Thu Sep 27, 2007 3:47 pm
Location: Colombia

Re: Ayuda Al compilar me Da error en ::Super

Post by ruben Dario »

Gracias
Funciono
Ruben Dario Gonzalez
Cali-Colombia
rubendariogd@hotmail.com - rubendariogd@gmail.com
Post Reply