]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.55
authorfred <fred>
Sun, 24 Mar 2002 19:52:04 +0000 (19:52 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:52:04 +0000 (19:52 +0000)
lily/include/lyric-item.hh [deleted file]
lily/lyric-item.cc [deleted file]

diff --git a/lily/include/lyric-item.hh b/lily/include/lyric-item.hh
deleted file mode 100644 (file)
index a5dc27b..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-//
-//  lyric-item.hh -- part of LilyPond
-//
-//  copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
-
-#ifndef LYRIC_ITEM_HH
-#define LYRIC_ITEM_HH
-
-#include "text-item.hh"
-  
-struct Lyric_item : Text_item {
-    /* *************** */
-    Lyric_item(Lyric_req* lreq_l, int voice_count_i);
-    virtual void do_pre_processing();    
-};
-
-
-#endif // LYRIC_ITEM_HH //
-
diff --git a/lily/lyric-item.cc b/lily/lyric-item.cc
deleted file mode 100644 (file)
index 3186523..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "musical-request.hh"
-#include "paper-def.hh"
-#include "lyric-item.hh"
-#include "stem.hh"
-#include "molecule.hh"
-#include "lookup.hh"
-#include "text-def.hh"
-#include "source-file.hh"
-#include "source.hh"
-#include "debug.hh"
-
-Lyric_item::Lyric_item(Lyric_req* lreq_l, int voice_count_i)
-    : Text_item(lreq_l)
-{
-    pos_i_ = -voice_count_i * 4 ;      // 4 fontsize dependant. TODO
-    dir_i_ = -1;
-}
-
-void
-Lyric_item::do_pre_processing()
-{
-
-    // test context-error
-    if ( tdef_l()->text_str_.index_i( "Gates" ) >=0)// :-)
-       tdef_l()->warning( "foul word");
-}