last-svn-commit-864-g1027cb2 scribo/text/paragraphs.hh: Remove unused argument.

--- scribo/ChangeLog | 4 ++++ scribo/scribo/text/paragraphs.hh | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/scribo/ChangeLog b/scribo/ChangeLog index b7e0f5a..2fb884b 100644 --- a/scribo/ChangeLog +++ b/scribo/ChangeLog @@ -1,5 +1,9 @@ 2011-05-06 Guillaume Lazzara <lazzara@fidji.lrde.epita.fr> + * scribo/text/paragraphs.hh: Remove unused argument. + +2011-05-06 Guillaume Lazzara <lazzara@fidji.lrde.epita.fr> + Fix namespace ambiguities. * scribo/binarization/internal/first_pass_functor.hh, diff --git a/scribo/scribo/text/paragraphs.hh b/scribo/scribo/text/paragraphs.hh index 94e5751..6c9285b 100644 --- a/scribo/scribo/text/paragraphs.hh +++ b/scribo/scribo/text/paragraphs.hh @@ -64,8 +64,7 @@ namespace scribo void paragraph_links(const line_links<L>& left, const line_links<L>& right, line_links<L>& output, - const line_set<L>& lines, - const image2d<bool>& input) + const line_set<L>& lines) { output = left.duplicate(); @@ -1039,7 +1038,7 @@ namespace scribo // std::cout << "Finalizing merging" << std::endl; // finalize_line_merging(left, right, lines); std::cout << "Extracting paragraphs" << std::endl; - filter::paragraph_links(left, right, output, lines, input); + filter::paragraph_links(left, right, output, lines); paragraph_set<L> par_set = make::paragraph(output); return par_set; -- 1.5.6.5
participants (1)
-
Guillaume Lazzara