]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/offset.cc
release: 1.0.1
[lilypond.git] / flower / offset.cc
index d92c3af31ac0ccaf2ae8414d4d7084005224cdd4..7f0a6949e38054783a3dd17b3804c4bebdd096f0 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 #include <math.h>
 
@@ -18,7 +18,8 @@ String
 Offset::str () const
 {
   String s;
-  s = String("(") + coordinate_a_[X_AXIS] + ", " + coordinate_a_[Y_AXIS] + ")";
+  s = String("(") + to_str (coordinate_a_[X_AXIS]) + ", " 
+    + to_str (coordinate_a_[Y_AXIS]) + ")";
   return s;
 }
 #endif