X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ffreetype-error.cc;h=00e5cae3519b28cc8f1314334e25cd3ec3884115;hb=6bace571dd3cd34373f0f21d1a7f0f1a21b80605;hp=cfdab411ded42de438961193098dce85d79ca61c;hpb=70e4c4974bf1c4f396662dd4a9adf5a6b004a269;p=lilypond.git diff --git a/lily/freetype-error.cc b/lily/freetype-error.cc index cfdab411de..00e5cae351 100644 --- a/lily/freetype-error.cc +++ b/lily/freetype-error.cc @@ -1,8 +1,8 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2007--2010 Han-Wen Nienhuys - + Copyright (C) 2007--2012 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,34 +20,33 @@ #include "freetype.hh" -#undef __FTERRORS_H__ -#define FT_ERRORDEF(e, v, s) { e, s }, -#define FT_ERROR_START_LIST { -#define FT_ERROR_END_LIST { 0, 0 } }; - +#undef __FTERRORS_H__ +#define FT_ERRORDEF(e, v, s) { e, s }, +#define FT_ERROR_START_LIST { +#define FT_ERROR_END_LIST { 0, 0 } }; + const struct Freetype_error_message -{ - FT_Error err_code; - const char* err_msg; -} ft_errors[] = - +{ + FT_Error err_code; + const char *err_msg; +} ft_errors[] = + #include ; - #include string freetype_error_string (FT_Error code) { for (Freetype_error_message const *p = ft_errors; - p->err_msg; p ++) + p->err_msg; p++) { if (p->err_code == code) - return p->err_msg; + return p->err_msg; } - return ""; + return ""; } - +