]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-name-engraver.cc
Issue 4865/2: Rewrite of new translator initializations
[lilypond.git] / lily / note-name-engraver.cc
index c7ea5ea6042f5868be45c28909ea3147e995444e..d4494a7cb7f7eae9374128bfc372764b9b34495c 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 1999--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 1999--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -35,7 +35,6 @@ public:
   void stop_translation_timestep ();
 };
 
-IMPLEMENT_TRANSLATOR_LISTENER (Note_name_engraver, note);
 void
 Note_name_engraver::listen_note (Stream_event *ev)
 {
@@ -50,7 +49,7 @@ Note_name_engraver::process_music ()
     {
       if (i)
         s += " ";
-      Pitch p = *Pitch::unsmob (events_[i]->get_property ("pitch"));
+      Pitch p = *unsmob<Pitch> (events_[i]->get_property ("pitch"));
 
       if (!to_boolean (get_property ("printOctaveNames")))
         p = Pitch (-1, p.get_notename (), p.get_alteration ());
@@ -74,6 +73,12 @@ Note_name_engraver::Note_name_engraver ()
 {
 }
 
+void
+Note_name_engraver::boot ()
+{
+  ADD_LISTENER (Note_name_engraver, note);
+}
+
 ADD_TRANSLATOR (Note_name_engraver,
                 /* doc */
                 "Print pitches as words.",