]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/header.cc
release: 0.1.57
[lilypond.git] / lily / header.cc
index f2a54aab2d97018ad4bf239e238d6545df69acfc..fb1e02205b9766854c4f9ff8f1f03ed656be6ec4 100644 (file)
@@ -7,14 +7,17 @@
 */
 
 #include "string.hh"
-#include "assoc-iter.hh"
+#include "dictionary-iter.hh"
 #include "header.hh"
 
 String
 Header::TeX_string() const
 {
   String s;
-  for (Assoc_iter<String, String> i(*this); i.ok(); i++) 
+
+  s+= "\\def\\LilyIdString{"  + lily_id_str_ + "}";
+  
+  for (Dictionary_iter<String> i(*this); i.ok(); i++) 
     {
       s += "\\def\\mudela" + i.key() + "{" + i.val() + "}";
     }