Where did you get that line???? From line 88 in src/uipp/base/DropSite.C I have
void DropSite::setDropWidget(Widget drop_w, unsigned char type,
Pixmap animation, Pixmap animation_mask)
I don't see defaults here. I'm mainly concerned with what happens with
animation and animation_mask when these parameters are not specified in the
call.
>
> Yep, it's legal. If default arguments are specified, one may
> call the function without those arguments and the defaults
> will be used:
>
> setDropWidget(Widget, unsigned char type = XmDROP_SITE_SIMPLE, .....
>
> XmDROP_SITE_SIMPLE being the default.
>
>
> Richard