]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/offset.cc
Merge branch 'master' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / flower / offset.cc
index 9265f12fdaf9800bd5e24ad5647c178044ef8b30..f578b191f9a4c8b93f4f694a8b8f06beefb522c8 100644 (file)
@@ -3,18 +3,18 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "offset.hh"
 
 
 #ifndef STANDALONE
-Std_string
+string
 Offset::to_string () const
 {
-  Std_string s;
-  s = Std_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;
 }