Re: Euphoria bug found (warning system)

new topic     » goto parent     » topic index » view thread      » older message » newer message

Al Getz writes:

> constant MenuItem_Sep001=create(MenuItem,
>                  "-",FPUMenu2,-> 1,0,1,0,0)
>
>The warning issued is:
>
>  "MenuItem_Sep001 not used"

The symbol "MenuItem_Sep001" never appears 
anywhere else in your program, so Euphoria issues
a warning about it. Most warnings are false alarms.
They are just meant to point out suspicious-looking
things in your code. Add "without warning" just before
this declaration, and you won't be warned about it 
any more. 

You have several other warnings besides this one.
If they are also false alarms, you can deal with them 
in a similar way. It's best to put "without warning" in the 
specific file that is generating a warning, but if you want, 
you can just put "without warning" at the top of your 
main .exw file, and turn off all warnings, everywhere.

Regards,
   Rob Craig
   Rapid Deployment Software
   http://www.RapidEuphoria.com

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu