]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
Update email, change default padding on TextSpanner.
[lilypond.git] / lily / swallow-perf.cc
index f537e6e2577eb75431df28246626065323b67488..92c7c4ba9c0bd971732f25a43d82c7fb9bc1806f 100644 (file)
@@ -1,9 +1,9 @@
 /*
-  swallow-perf.cc -- implement Swallow_performer
+  swallow-performer.cc -- implement Swallow_performer
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "performer.hh"
@@ -13,7 +13,7 @@ class Swallow_performer : public Performer
 public:
   TRANSLATOR_DECLARATIONS (Swallow_performer);
 protected:
-  virtual bool try_music (Music*);
+  virtual bool try_music (Music *);
 };
 
 bool
@@ -23,16 +23,16 @@ Swallow_performer::try_music (Music *m)
       || m->is_mus_type ("melisma-playing-event"))
     return false;
   else
-    return true; 
+    return true;
 }
 
 Swallow_performer::Swallow_performer ()
 {}
 
 ADD_TRANSLATOR (Swallow_performer,
-/* descr */       "",
-/* creats*/       "",
-/* accepts */     "general-music",
-/* acks  */      "",
-/* reads */       "",
-/* write */       "");
+               /* descr */ "",
+               /* creats*/ "",
+               /* accepts */ "general-music",
+               /* acks  */ "",
+               /* reads */ "",
+               /* write */ "");