]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/sustain-pedal.cc
* flower/include/std-string.hh:
[lilypond.git] / lily / sustain-pedal.cc
index b1d87e79a3885d542f1cfff6f8d55d0e98370608..2e6cd91bd9be118684c3c98e4311db7ba1eaaea3 100644 (file)
@@ -44,18 +44,18 @@ Sustain_pedal::print (SCM smob)
   if (!scm_is_string (glyph))
     return mol.smobbed_copy ();
 
-  std::string text = ly_scm2string (glyph);
+  string text = ly_scm2string (glyph);
 
   for (ssize i = 0; i < text.length (); i++)
     {
-      std::string idx ("pedal.");
+      string idx ("pedal.");
       if (text.substr (i, 3) == "Ped")
        {
          idx += "Ped";
          i += 2;
        }
       else
-       idx += std::string (&text.c_str ()[i], 1);
+       idx += string (&text.c_str ()[i], 1);
       Stencil m = Font_interface::get_default_font (e)->find_by_name (idx);
       if (!m.is_empty ())
        mol.add_at_edge (X_AXIS, RIGHT, m, 0, 0);