X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpaper-outputter.cc;h=e7e48c2fb3c0c9ae03b34269567817027e4d3bd8;hb=5db2447d084320c092768bb7c5683f76e10e4a8a;hp=88deb5b881ae3e8f22edc272697d9cdd4478783e;hpb=545092a25d8ca41dc90b87482474b3719f7130a9;p=lilypond.git diff --git a/lily/paper-outputter.cc b/lily/paper-outputter.cc index 88deb5b881..e7e48c2fb3 100644 --- a/lily/paper-outputter.cc +++ b/lily/paper-outputter.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2005 Han-Wen Nienhuys + (c) 1997--2007 Han-Wen Nienhuys Jan Nieuwenhuizen */ @@ -11,12 +11,13 @@ #include #include + using namespace std; #include "dimensions.hh" #include "file-name.hh" #include "font-metric.hh" -#include "input-smob.hh" +#include "input.hh" #include "lily-version.hh" #include "main.hh" #include "output-def.hh" @@ -28,14 +29,14 @@ using namespace std; #include "ly-smobs.icc" -Paper_outputter::Paper_outputter (SCM port, String format) +Paper_outputter::Paper_outputter (SCM port, string format) { file_ = port; output_module_ = SCM_EOL; smobify_self (); - String module_name = "scm output-" + format; - output_module_ = scm_c_resolve_module (module_name.to_str0 ()); + string module_name = "scm output-" + format; + output_module_ = scm_c_resolve_module (module_name.c_str ()); } Paper_outputter::~Paper_outputter ()