This commit is contained in:
Vincent Wei
2019-04-09 11:09:54 +08:00
parent 7cc185f409
commit 9e0c3a9c99
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -7023,7 +7023,6 @@ MG_EXPORT BOOL GUIAPI ft2SetLcdFilter (LOGFONT* logfont, FT2LCDFilter filter);
MG_EXPORT DEVFONT* GUIAPI LoadDevFontFromIncoreData (const char *devfont_name,
const void *data);
#if defined(_MGFONT_QPF) || defined(_MGFONT_FT2) || defined(_MGFONT_TTF) || defined(_MGFONT_UPF)
/**
* \fn DEVFONT* GUIAPI LoadDevFontFromFile (const char* devfont_name, \
* const char* file_name)
@@ -7053,7 +7052,6 @@ MG_EXPORT DEVFONT* GUIAPI LoadDevFontFromFile (const char *devfont_name,
* \sa LoadDevFontFromFile
*/
MG_EXPORT void GUIAPI DestroyDynamicDevFont (DEVFONT **devfont);
#endif
/** @} end of font_fns */
+1 -1
View File
@@ -510,7 +510,7 @@ static DEVFONT* find_devfont(const char* font_name, BOOL is_mbc_list)
cur = head;
while (cur) {
if (strcmp (cur->name, font_name) == 0) {
if (strcasecmp (cur->name, font_name) == 0) {
return cur;
}