]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/paper-book.cc
*** empty log message ***
[lilypond.git] / lily / paper-book.cc
index 48b0fe34f77ebc62d156c00d9da67e1a18db09b2..bf125664606629b861c51ff7348a6a8c59fcc722 100644 (file)
@@ -104,7 +104,7 @@ Paper_book::output (SCM output_channel)
   if (ly_is_module (header_))
     scopes = scm_cons (header_, scopes);
 
-  String mod_nm = "scm framework-" + output_backend_global;
+  std::string mod_nm = "scm framework-" + output_backend_global;
 
   SCM mod = scm_c_resolve_module (mod_nm.c_str ());
   if (make_print)
@@ -144,8 +144,8 @@ Paper_book::classic_output (SCM output)
   if (ly_is_module (header_0_))
     scopes = scm_cons (header_0_, scopes);
 
-  String format = output_backend_global;
-  String mod_nm = "scm framework-" + format;
+  std::string format = output_backend_global;
+  std::string mod_nm = "scm framework-" + format;
 
   SCM mod = scm_c_resolve_module (mod_nm.c_str ());
   SCM func = scm_c_module_lookup (mod, "output-classic-framework");