OLD | NEW |
1 /* | 1 /* |
2 This file is part of LilyPond, the GNU music typesetter. | 2 This file is part of LilyPond, the GNU music typesetter. |
3 | 3 |
4 Copyright (C) 1999--2015 Han-Wen Nienhuys <hanwen@xs4all.nl> | 4 Copyright (C) 1999--2015 Han-Wen Nienhuys <hanwen@xs4all.nl> |
5 | 5 |
6 LilyPond is free software: you can redistribute it and/or modify | 6 LilyPond is free software: you can redistribute it and/or modify |
7 it under the terms of the GNU General Public License as published by | 7 it under the terms of the GNU General Public License as published by |
8 the Free Software Foundation, either version 3 of the License, or | 8 the Free Software Foundation, either version 3 of the License, or |
9 (at your option) any later version. | 9 (at your option) any later version. |
10 | 10 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 } | 140 } |
141 | 141 |
142 SCM | 142 SCM |
143 Font_metric::sub_fonts () const | 143 Font_metric::sub_fonts () const |
144 { | 144 { |
145 return SCM_EOL; | 145 return SCM_EOL; |
146 } | 146 } |
147 | 147 |
148 Stencil | 148 Stencil |
149 Font_metric::text_stencil (Output_def *state, | 149 Font_metric::text_stencil (Output_def *state, |
150 const string&, bool) const | 150 const string&, |
| 151 bool, |
| 152 const string&) const |
151 { | 153 { |
152 (void) state; | 154 (void) state; |
153 | 155 |
154 programming_error ("Cannot get a text stencil from this font"); | 156 programming_error ("Cannot get a text stencil from this font"); |
155 return Stencil (Box (), SCM_EOL); | 157 return Stencil (Box (), SCM_EOL); |
156 } | 158 } |
OLD | NEW |