X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Foffset.cc;h=a0e87b58cf57984734386aabc3a6b3dc8ea99b7d;hb=6a1bde2b538e6e0feefcc6e0ae03ec9f4cc7a91b;hp=a4e7ee90e9fbdf7b414f4041919be0645b0931bf;hpb=4ecdbd7d70ca7441be4dddd15ac01cc255bc2a35;p=lilypond.git diff --git a/flower/offset.cc b/flower/offset.cc index a4e7ee90e9..a0e87b58cf 100644 --- a/flower/offset.cc +++ b/flower/offset.cc @@ -3,18 +3,18 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2005 Han-Wen Nienhuys + (c) 1997--2006 Han-Wen Nienhuys */ #include "offset.hh" #ifndef STANDALONE -String +string Offset::to_string () const { - String s; - s = String (" (") + ::to_string (coordinate_a_[X_AXIS]) + ", " + string s; + s = string (" (") + ::to_string (coordinate_a_[X_AXIS]) + ", " + ::to_string (coordinate_a_[Y_AXIS]) + ")"; return s; }