From bb61886487d9b2cd16f45eab08b864f2b17948a8 Mon Sep 17 00:00:00 2001 From: Sadie del Solar Date: Mon, 1 Jul 2024 17:09:13 -0700 Subject: [PATCH] Codechange: Alphabetize function declarations in fontcache.h --- src/fontcache.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/fontcache.h b/src/fontcache.h index 1254027214..28ced4921f 100644 --- a/src/fontcache.h +++ b/src/fontcache.h @@ -228,11 +228,10 @@ inline FontCacheSubSetting *GetFontCacheSubSetting(FontSize fs) } } -uint GetFontCacheFontSize(FontSize fs); -std::string GetFontCacheFontName(FontSize fs); - void DebugPrintFontSettings(const std::string &desc); bool GetFontAAState(); +std::string GetFontCacheFontName(FontSize fs); +uint GetFontCacheFontSize(FontSize fs); void InitFontCache(); bool IsDefaultFont(const FontCacheSubSetting &setting); void ResizeFont(FontSize font_size, uint size);