]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/offset.cc
string() -> to_string()
[lilypond.git] / flower / offset.cc
index 92d2937b0a834642dccf34d3f935a90fd2214773..e9a6d7394a6993d053739f07546caf23b8911d3a 100644 (file)
 
 #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