From 40a2c7db7c7feaff1e8e7db3e80563d1c4cee0fa Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 23:12:11 +0000 Subject: [PATCH] lilypond-1.3.14 --- input/bugs/1845390254.ly | 38 --------------------------- input/test/dotted-slur.ly | 23 ----------------- lily/include/score-column.hh | 50 ------------------------------------ 3 files changed, 111 deletions(-) delete mode 100644 input/bugs/1845390254.ly delete mode 100644 input/test/dotted-slur.ly delete mode 100644 lily/include/score-column.hh diff --git a/input/bugs/1845390254.ly b/input/bugs/1845390254.ly deleted file mode 100644 index 87b066e187..0000000000 --- a/input/bugs/1845390254.ly +++ /dev/null @@ -1,38 +0,0 @@ - -% Generated by mudela-book.py; options are center -\include "paper16.ly" -\paper { linewidth = 390.000000 \pt; } - -\header { - title = "The river is flowing"; - composer = "Traditional (?)"; -} -\include "paper16.ly" - -melody = \notes \relative c' { - \partial 8; - g8 | - -} - -text = \lyrics { - The -} - -accompaniment =\chords { - r8 - c2:3- f:3-.7 d:min es4 c8:min r8 - c2:min f:min7 g:7^3.5 c:min } - -\score { - \simultaneous { - - \addlyrics - \context Staff = mel { - \melody - } - \context Lyrics \text - } -% \midi { } - \paper { linewidth = 10.0\cm; } -} diff --git a/input/test/dotted-slur.ly b/input/test/dotted-slur.ly deleted file mode 100644 index d6e63b23d0..0000000000 --- a/input/test/dotted-slur.ly +++ /dev/null @@ -1,23 +0,0 @@ -\version "1.3.5"; - -\score{ - \notes{ - c( d e )c | - \slurdotted - c( d e )c | - \slurnormal - c( d e )c | - \property Voice.slurDash = 3 - c( d e )c | - \slurnormal - c( d e )c | - } - \paper{ - indent = 0.0\pt; - %for broken! - % linewidth= 30.\mm; - castingalgorithm = \Wordwrap; - } -} - - diff --git a/lily/include/score-column.hh b/lily/include/score-column.hh deleted file mode 100644 index eff9441bf3..0000000000 --- a/lily/include/score-column.hh +++ /dev/null @@ -1,50 +0,0 @@ -/* - score-column.hh -- declare Score_column - - source file of the GNU LilyPond music typesetter - - (c) 1997--1999 Han-Wen Nienhuys -*/ - - -#ifndef SCORE_COLUMN_HH -#define SCORE_COLUMN_HH - -#include "lily-proto.hh" -#include "array.hh" -#include "moment.hh" -#include "paper-column.hh" - -/** - Column with durational info. - - The columns which contain data have a rhythmical - position. Score_column is the type with a rhythmical time attached - to it. The calculation of idealspacing is done with data in these - columns. - - */ - -class Score_column : public Paper_column { - Moment when_; -public: - Moment shortest_playing_mom_; - Moment shortest_starter_mom_; - - - VIRTUAL_COPY_CONS(Score_element); - - Moment when_mom() { return when_; } - Score_column (Moment when); - - bool musical_b() const; - void do_print() const; -}; - -#endif // SCORE_COLUMN_HH - - - - - - -- 2.39.5