On Friday 25 October 2002 3:45 am, Rob Lahaye wrote: > Angus Leeming wrote: > > Here are the remaining four dialogs from Rob's monster > > patch. Printer, Spellchecker, Texinfo and Wrap. > > > > All the diff's look fine to me, they all compile and I've > > tried them out in minimal fashion. Ok to apply? > > > > Angus > > One small thing only: > > Index: src/frontends/xforms/FormSpellchecker.C > - > fl_deselect_browser_line(dialog_->browser, line); + > int const line = > fl_get_browser(dialog_->browser_suggestions); + > fl_deselect_browser_line(dialog_->browser_suggestions, > line); > > Replace that by: > - > fl_deselect_browser_line(dialog_->browser, line); + > fl_deselect_browser(dialog_->browser_suggestions); > > > Because we can deselect the browser, without having to pull > the line number. Rob.
Done. Thanks. A