X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fnote-column-scheme.cc;h=c665b70548ac4f163d132ba73e21a7a545abbd99;hb=4d405ef96a8a62771d7d9a283ff5369a772e89d8;hp=5fc7974ade03405b447c82d6aff8eb89abca04fd;hpb=487f44ae4bebfe14e56bbd8a6de5e7a9aea35028;p=lilypond.git diff --git a/lily/note-column-scheme.cc b/lily/note-column-scheme.cc index 5fc7974ade..c665b70548 100644 --- a/lily/note-column-scheme.cc +++ b/lily/note-column-scheme.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2010 Nicolas Sceaux + Copyright (C) 2010--2015 Nicolas Sceaux LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -10,11 +10,11 @@ LilyPond is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with LilyPond. If not, see . + along with LilyPond. If not, see . */ #include "note-column.hh" @@ -22,11 +22,11 @@ #include "grob.hh" LY_DEFINE (ly_note_column_accidentals, "ly:note-column-accidentals", - 1, 0, 0, (SCM note_column), - "Return the @code{AccidentalPlacement} grob from @var{note-column}" - " if any, or @code{SCM_EOL} otherwise.") + 1, 0, 0, (SCM note_column), + "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 (note_column); LY_ASSERT_SMOB (Grob, note_column, 1); Grob *acc = Note_column::accidentals (grob); if (acc) @@ -35,11 +35,11 @@ LY_DEFINE (ly_note_column_accidentals, "ly:note-column-accidentals", } LY_DEFINE (ly_note_column_dot_column, "ly:note-column-dot-column", - 1, 0, 0, (SCM note_column), - "Return the @code{DotColumn} grob from @var{note-column}" - " if any, or @code{SCM_EOL} otherwise.") + 1, 0, 0, (SCM note_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 (note_column); LY_ASSERT_SMOB (Grob, note_column, 1); Grob *dot_column = Note_column::dot_column (grob); if (dot_column)