On Friday 24 May 2002 9:27 am, Andre Poenitz wrote: > On Fri, May 24, 2002 at 10:17:38AM +0200, Lars Gullik Bjønnes wrote: > > Nitpick: > > > > Pixmap p1 = fl_get_pixmap_pixmap(dialog_->button_pix, &p1, 0); > > ^^ ^^ > > Does this work?
But you don't need code confusion like this. Why not: Pixmap p1; fl_get_pixmap_pixmap(dialog_->button_pix, &p1, 0); Angus