]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dimension-cache.cc
Warn about only one slur at once.
[lilypond.git] / lily / dimension-cache.cc
index 052764232585b7efbbd661cb6bca62f64f5bbf68..e4dd194632bbdb1d8fff1ec741fd3ad1077cb301 100644 (file)
@@ -1,13 +1,12 @@
-/*   
-  dimension-cache.cc --  implement Dimension_cache
-  
+/*
+  dimension-cache.cc -- implement Dimension_cache
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
- */
 
+  (c) 1998--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+*/
 
-#include <cmath>
+#include <math.h>
 
 #include "dimension-cache.hh"
 #include "warn.hh"
@@ -17,11 +16,11 @@ Dimension_cache::Dimension_cache (Dimension_cache const &d)
 {
   init ();
   dimension_ = d.dimension_;
-
+  dimension_callback_ = d.dimension_callback_;
   offset_ = d.offset_;
   offset_callbacks_ = d.offset_callbacks_;
   offsets_left_ = d.offsets_left_;
-  parent_ = d.parent_;  
+  parent_ = d.parent_;
 }
 
 Dimension_cache::Dimension_cache ()
@@ -33,17 +32,12 @@ void
 Dimension_cache::init ()
 {
   dimension_ = SCM_EOL;
+  dimension_callback_ = SCM_EOL;
 
   offsets_left_ = 0;
   offset_callbacks_ = SCM_EOL;
-  offset_ =0.0;
-  
-  parent_ =0;
-}
-
-
-
-
-
+  offset_ = 0.0;
 
+  parent_ = 0;
+}