From 36a7e75c443a3453feee42e75e49dd6a99e218fb Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 25 Nov 2010 14:55:01 +0000 Subject: [PATCH] (svn r21320) -Fix (r21298): somehow a semicolon got lost --- src/fontcache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fontcache.cpp b/src/fontcache.cpp index 9e03fafe0c..d3ba4f0b34 100644 --- a/src/fontcache.cpp +++ b/src/fontcache.cpp @@ -742,7 +742,7 @@ bool SetFallbackFont(FreeTypeSettings *settings, const char *language_isocode, i #else /* without WITH_FONTCONFIG */ FT_Error GetFontByFaceName(const char *font_name, FT_Face *face) {return FT_Err_Cannot_Open_Resource;} -bool SetFallbackFont(FreeTypeSettings *settings, const char *language_isocode, int winlangid, SetFallbackFontCallback *callback) { return false } +bool SetFallbackFont(FreeTypeSettings *settings, const char *language_isocode, int winlangid, SetFallbackFontCallback *callback) { return false; } #endif /* WITH_FONTCONFIG */ static void SetFontGeometry(FT_Face face, FontSize size, int pixels)