]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-column-scheme.cc
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / lily / note-column-scheme.cc
index 136c9d3062989bfae154777e8048f42dd8168bd1..c665b70548ac4f163d132ba73e21a7a545abbd99 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2010--2011 Nicolas Sceaux <nicolas.sceaux@free.fr>
+  Copyright (C) 2010--2015 Nicolas Sceaux <nicolas.sceaux@free.fr>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -26,7 +26,7 @@ LY_DEFINE (ly_note_column_accidentals, "ly:note-column-accidentals",
            "Return the @code{AccidentalPlacement} grob from @var{note-column}"
            " if any, or @code{SCM_EOL} otherwise.")
 {
-  Grob *grob = unsmob_grob (note_column);
+  Grob *grob = unsmob<Grob> (note_column);
   LY_ASSERT_SMOB (Grob, note_column, 1);
   Grob *acc = Note_column::accidentals (grob);
   if (acc)
@@ -39,7 +39,7 @@ LY_DEFINE (ly_note_column_dot_column, "ly:note-column-dot-column",
            "Return the @code{DotColumn} grob from @var{note-column}"
            " if any, or @code{SCM_EOL} otherwise.")
 {
-  Grob *grob = unsmob_grob (note_column);
+  Grob *grob = unsmob<Grob> (note_column);
   LY_ASSERT_SMOB (Grob, note_column, 1);
   Grob *dot_column = Note_column::dot_column (grob);
   if (dot_column)