Matthias Melcher schrieb:
>
> This is the original FLTK 1 code:
>
>
> void fltk3::Button::draw() {
>    FLTK3_OBJECT_VCALLS_WRAPPER(draw(), Draw)
>    if (type() == fltk3::HIDDEN_BUTTON) return;
>    fltk3::Color col = value() ? selection_color() : color();
>
>
> This is the code in FLTK 3, wrapper included:
>
>
> void fltk3::Button::draw() {
>    FLTK3_OBJECT_VCALLS_WRAPPER(draw(), Draw)
>    if (type() == fltk3::HIDDEN_BUTTON) return;
>    fltk3::Color col = value() ? selection_color() : color();
>
To me it's two times the same...

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

Reply via email to