]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/source.cc
*** empty log message ***
[lilypond.git] / lily / source.cc
index 6c5a47691cf41c1212028fb25c70de692763d808..775668e08d53dd40389526addf156cb9024b6194 100644 (file)
@@ -40,11 +40,11 @@ Sources::set_path (File_path *f)
    @return 0 if no file found
 */
 Source_file *
-Sources::get_file (String &file_string) //UGH
+Sources::get_file (std::string &file_string) //UGH
 {
   if ((file_string != "-") && path_)
     {
-      String file_string_o = path_->find (file_string);
+      std::string file_string_o = path_->find (file_string);
       if ((file_string_o == "") && (file_string != ""))
        return 0;
       file_string = file_string_o;