Rick Scott wrote: > > 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) >
The function prototype for setDropWidget in class DropSite is in DropSite.h at line 69. It's declared virtual, which, if I remember correctly, means that it can be overidden in derived classes. It is strange that the actual function definition in DropSite.C does not also specify the defaults, but it may still be legal. I seem to remember a warning somewhere in the netscape programmer's portability guide about something like this. I'll try to dig it up. Richard
