]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/gregorian-ligature.cc
Release: bump Welcome versions.
[lilypond.git] / lily / gregorian-ligature.cc
index f0606102cb6bea32d3bab9e1844613acfb543aeb..6fbbd0927b0eb3fa90b968675974802077d79c4d 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2003--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 2003--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
 
 #include "grob.hh"
 
-void check_prefix (string name, int mask, int prefix_set, string *str)
+void check_prefix (const string &name, int mask, int prefix_set, string *str)
 {
   if (prefix_set & mask)
     {
       if (!str->empty ())
-       *str += ", ";
+        *str += ", ";
       *str += name;
     }
 }
@@ -60,21 +60,21 @@ Gregorian_ligature::prefixes_to_str (Grob *primitive)
   read by the associated item class, such as VaticanaLigature.--jr
 */
 ADD_INTERFACE (Gregorian_ligature,
-              "A gregorian ligature.",
+               "A gregorian ligature.",
 
-              /* properties */
-              "virga "
-              "stropha "
-              "inclinatum "
-              "auctum "
-              "descendens "
-              "ascendens "
-              "oriscus "
-              "quilisma "
-              "deminutum "
-              "cavum "
-              "linea "
-              "pes-or-flexa "
-              "context-info "
-              "prefix-set "
-              );
+               /* properties */
+               "virga "
+               "stropha "
+               "inclinatum "
+               "auctum "
+               "descendens "
+               "ascendens "
+               "oriscus "
+               "quilisma "
+               "deminutum "
+               "cavum "
+               "linea "
+               "pes-or-flexa "
+               "context-info "
+               "prefix-set "
+              );