--- ./app/histogram_tool.c.vanilla 2005-12-14 16:29:07.000000000 +0100 +++ ./app/histogram_tool.c 2005-12-14 16:31:31.000000000 +0100 @@ -84,7 +84,7 @@ static void *histogram_tool_options = NULL; static HistogramToolDialog *histogram_tool_dialog = NULL; -static Argument * histogram_invoker (Argument *args); +Argument * histogram_invoker (Argument *args); static char * histogram_info_names[7] = { @@ -538,7 +538,7 @@ /* * TBD - WRB -make work with float data */ -static Argument * +Argument * histogram_invoker (Argument *args) { Argument *return_args; --- ./plug-ins/bracketing_to_hdr/Fl_Cartesius.cpp.vanilla 2005-12-15 02:17:32.000000000 +0100 +++ ./plug-ins/bracketing_to_hdr/Fl_Cartesius.cpp 2005-12-15 02:33:44.000000000 +0100 @@ -804,7 +804,7 @@ case FL_MOVE: mk_coord_picker_str(wx_from_x(Fl::event_x()), wy_from_y(Fl::event_y())); //draw_coord_picker(); // now via the damage() channel... - damage (FL_DAMAGE_USER1); // my code word for "draw only coord picker" + //damage (FL_DAMAGE_USER1); // my code word for "draw only coord picker" return 1; case FL_ENTER: @@ -896,13 +896,14 @@ // Check if only the coord picker is to update (before Fl_Group::draw(), // which clears all!) Note: draw_coord() doesn't need win-world-map... - + +/* if (damage() == FL_DAMAGE_USER1) { // &-question fails (MOVE-Problem) draw_coord_picker(); TRACE_DRAW(("only coord_picker\n")) return; } - +*/ if (rejustify_) justify(); // Before draw_children(), so that children // have the right map too --- ./plug-ins/bracketing_to_hdr/fl_print_event.cpp.vanilla 2005-12-15 02:34:37.000000000 +0100 +++ ./plug-ins/bracketing_to_hdr/fl_print_event.cpp 2005-12-15 02:34:57.000000000 +0100 @@ -89,8 +89,8 @@ if (mask & FL_DAMAGE_EXPOSE) strcat(s," EXPOSE"); if (mask & FL_DAMAGE_SCROLL) strcat(s," SCROLL"); if (mask & FL_DAMAGE_OVERLAY) strcat(s," OVERLAY"); - if (mask & FL_DAMAGE_USER1) strcat(s," USER1"); - if (mask & FL_DAMAGE_USER2) strcat(s," USER2"); +// if (mask & FL_DAMAGE_USER1) strcat(s," USER1"); +// if (mask & FL_DAMAGE_USER2) strcat(s," USER2"); if (mask & FL_DAMAGE_ALL) strcat(s," ALL"); } printf("damage mask: %d: %s", mask, s);