Am 26.02.2010 18:25, [email protected] wrote:
> Author: greg.ercolano
> Date: 2010-02-26 09:25:32 -0800 (Fri, 26 Feb 2010)
> New Revision: 7156
> Log:
> added docs for fl_eventnames[] and fl_fontnames[]. (fixes STR#2275)

Greg, you did it again  :-(

There are inline /* comments */ in your doxygen docs.

> +
> +  The array gets defined inline wherever your '\#include<FL/names.h>' 
> appears.

minor correction: we don't need to html-escape "<" and ">" here ^^^^
in doxygen docs (IIRC).

> +  int MyWidget::handle(int e) {
> +      printf("Event was %s (%d)\n", fl_eventnames[e], e);
> +      /* ..resulting output might be e.g. "Event was FL_PUSH (1)".. */

This ^^^ doesn't compile (ends doxygen comment here) .............   ^^^

...

> +      // Resulting output might be e.g. "Label's font is FL_HELVETICA (0)"
> +      printf("Label's font is %s (%d)\n", fl_fontnames[fnum], fnum);
> +      /* ..resulting output might be e.g. "Label's font is FL_HELVETICA 
> (0)".. */

Same here ^^^

Question: does this compile with VS ?

Albrecht
_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to