]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix merging problem
authorJoe Neeman <joeneeman@gmail.com>
Sun, 28 Jan 2007 09:05:32 +0000 (11:05 +0200)
committerJoe Neeman <joeneeman@gmail.com>
Sun, 28 Jan 2007 09:05:32 +0000 (11:05 +0200)
lily/page-breaking.cc

index ed11285dd0decbdd9bb57f68dec1c70ee604a9b0..83add92ae0ba59492d98539914834d02318e7a19 100644 (file)
@@ -93,8 +93,8 @@ Page_breaking::break_into_pieces (vsize start_break, vsize end_break, Line_divis
          line_breaker_args (sys, chunks[i], chunks[i+1], &start, &end);
 
          vector<Column_x_positions> pos = ignore_div
-           ? line_breaking_[sys].get_best_solution (start, end)
-           : line_breaking_[sys].get_solution (start, end, div[i]);
+           ? line_breaking_[sys].best_solution (start, end)
+           : line_breaking_[sys].solve (start, end, div[i]);
          all_[sys].pscore_->root_system ()->break_into_pieces (pos);
        }
     }