]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-head-scheme.cc
Run grand replace for 2015.
[lilypond.git] / lily / note-head-scheme.cc
index df258b797ad8efd4f0374973083293c1da53c947..fa0e58dcc6d97a2628870f95afa61bd62c799a05 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2006--2009 Han-Wen Nienhuys <hanwen@lilypond.org>
+  Copyright (C) 2006--2015 Han-Wen Nienhuys <hanwen@lilypond.org>
 
 
   LilyPond is free software: you can redistribute it and/or modify
 #include "note-head.hh"
 #include "font-metric.hh"
 
-
 LY_DEFINE (ly_note_head__stem_attachment, "ly:note-head::stem-attachment",
-         2, 0, 0, (SCM font_metric, SCM glyph_name),
-         "Get attachment in @var{font-metric} for attaching a stem to"
-         " notehead @var{glyph-name}.")
+           2, 0, 0, (SCM font_metric, SCM glyph_name),
+           "Get attachment in @var{font-metric} for attaching a stem to"
+           " notehead @var{glyph-name}.")
 {
   LY_ASSERT_SMOB (Font_metric, font_metric, 1);
-  Font_metric *fm = unsmob_metrics (font_metric);
+  Font_metric *fm = Font_metric::unsmob (font_metric);
   LY_ASSERT_TYPE (scm_is_string, glyph_name, 2);
-  
+
   return ly_offset2scm (Note_head::get_stem_attachment (fm, ly_scm2string (glyph_name)));
 }