]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/offset.cc
release: 1.1.29
[lilypond.git] / flower / offset.cc
index 3085f246b5a2d12f0e4a24249adb925f39bcf27f..916640e692f305149766da9da6f3a093c9cd612a 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1999 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