]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/key-signature-interface.cc
* flower/include/std-string.hh:
[lilypond.git] / lily / key-signature-interface.cc
index d591d105d979d3c20878ee112e88a472bb77233a..5705b46ccf7899ee584032ec77cad99499b244d5 100644 (file)
@@ -92,7 +92,7 @@ Key_signature_interface::print (SCM smob)
   Real inter = Staff_symbol_referencer::staff_space (me) / 2.0;
 
   SCM scm_style = me->get_property ("style");
-  std::string style;
+  string style;
   if (scm_is_symbol (scm_style))
     style = ly_symbol2string (scm_style);
   else
@@ -116,7 +116,7 @@ Key_signature_interface::print (SCM smob)
   for (SCM s = newas; scm_is_pair (s); s = scm_cdr (s))
     {
       int alteration = scm_to_int (scm_cdar (s));
-      std::string font_char
+      string font_char
        = Accidental_interface::get_fontcharname (style, alteration);
       Stencil acc (fm->find_by_name ("accidentals." + font_char));