]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/offset.cc
Corrected accidentals--1 -> accidentals--2
[lilypond.git] / flower / offset.cc
index 92d2937b0a834642dccf34d3f935a90fd2214773..480f5a6bf99c5f451b18781ac1ee824500cee9a0 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 #include <math.h>
 
 
 #ifndef STANDALONE
 String
-Offset::string () const
+Offset::to_string () const
 {
   String s;
-  s = String (" (") + to_string (coordinate_a_[X_AXIS]) + ", " 
-    + to_string (coordinate_a_[Y_AXIS]) + ")";
+  s = String (" (") + ::to_string (coordinate_a_[X_AXIS]) + ", " 
+    + ::to_string (coordinate_a_[Y_AXIS]) + ")";
   return s;
 }
 #endif