]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lyric-performer.cc
Corrected typo by Jan
[lilypond.git] / lily / lyric-performer.cc
index a0607c24d7f4dc60cc7ed694bd27fbe786b3e010..f9faa7269329258d016d41b969a76d8fb6e58b79 100644 (file)
@@ -3,35 +3,32 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2004 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1997--2005 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #include "audio-item.hh"
 #include "performer.hh"
 
-class Lyric_performer : public Performer {
+class Lyric_performer : public Performer
+{
 public:
   TRANSLATOR_DECLARATIONS (Lyric_performer);
 protected:
 
-  virtual bool try_music (Musicreq);
+  virtual bool try_music (Music *req);
   virtual void stop_translation_timestep ();
   virtual void create_audio_elements ();
 
 private:
   Link_array<Music> lreqs_;
-  Audio_textaudio_;
+  Audio_text *audio_;
 };
 
-
-
-
 Lyric_performer::Lyric_performer ()
 {
   audio_ = 0;
 }
 
-
 void
 Lyric_performer::create_audio_elements ()
 {
@@ -41,7 +38,7 @@ Lyric_performer::create_audio_elements ()
       && ly_scm2string (lreqs_[0]->get_property ("text")).length ())
     {
       audio_ = new Audio_text (Audio_text::LYRIC,
-                                ly_scm2string (lreqs_[0]->get_property ("text")));
+                              ly_scm2string (lreqs_[0]->get_property ("text")));
       Audio_element_info info (audio_, lreqs_[0]);
       announce_element (info);
     }
@@ -60,7 +57,7 @@ Lyric_performer::stop_translation_timestep ()
 }
 
 bool
-Lyric_performer::try_music (Musicreq)
+Lyric_performer::try_music (Music *req)
 {
   if (req->is_mus_type ("lyric-event"))
     {
@@ -70,4 +67,4 @@ Lyric_performer::try_music (Music* req)
   return false;
 }
 
-ADD_TRANSLATOR (Lyric_performer,"","","lyric-event","","","");
+ADD_TRANSLATOR (Lyric_performer, "", "", "lyric-event", "", "", "");