# HG changeset patch # User Michael Goffioul # Date 1220195674 14400 # Node ID a4e03f9b4b8ad5926df241e267861c27a0573e87 # Parent bac1061a36bc15de44801eec2724740680c4bd8e Fix FLTK backend update diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2008-08-31 Michael Goffioul + + * DLD-FUNCTIONS/fltk_backend.cc (fltk_backend::redraw_figure, + fltk_backend::print_figure): Change graphics_handle argument to + graphics_object. + 2008-08-29 David Bateman * src/graphics.cc: Replace int by octave_idx_type in multiple diff --git a/src/DLD-FUNCTIONS/fltk_backend.cc b/src/DLD-FUNCTIONS/fltk_backend.cc --- a/src/DLD-FUNCTIONS/fltk_backend.cc +++ b/src/DLD-FUNCTIONS/fltk_backend.cc @@ -723,12 +723,12 @@ } } - void redraw_figure (const graphics_handle& fh) const + void redraw_figure (const graphics_object& go) const { - figure_manager::Instance ().mark_modified (fh); + figure_manager::Instance ().mark_modified (go.get_handle ()); } - void print_figure (const graphics_handle& /*fh*/, + void print_figure (const graphics_object& /*go*/, const std::string& /*term*/, const std::string& /*file*/, bool /*mono*/, const std::string& /*debug_file*/) const { }