From 1934d2cfc40bd9ef88c83decb970bbccc4914a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Mon, 18 Jul 2022 02:34:16 +0200 Subject: Fix typo. --- c/episodelistview.cpp | 4 ++-- c/main.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'c') diff --git a/c/episodelistview.cpp b/c/episodelistview.cpp index a24c831..d3abf74 100644 --- a/c/episodelistview.cpp +++ b/c/episodelistview.cpp @@ -95,9 +95,9 @@ LRESULT EpisodeListView::HandleNotify(const LPARAM lParam) break; case CDDS_ITEMPREPAINT: { - extern HFONT g_fBold; + extern HFONT g_hfBold; if (!Pl("track_episodes","watched",pLvCd->nmcd.lItemlParam)) { - SelectObject(pLvCd->nmcd.hdc, g_fBold); + SelectObject(pLvCd->nmcd.hdc, g_hfBold); return CDRF_NEWFONT; } break; diff --git a/c/main.cpp b/c/main.cpp index 68fe4b3..24fc19f 100644 --- a/c/main.cpp +++ b/c/main.cpp @@ -21,7 +21,7 @@ int g_iDPI = 96; /* Fonts. */ HFONT g_hfNormal; -HFONT g_fBold; +HFONT g_hfBold; /* Menus. */ HMENU g_hPopupMenu; @@ -171,7 +171,7 @@ static LRESULT CALLBACK CBTProc(const int nCode, const WPARAM wParam, const LPAR g_hfNormal = static_cast(GetStockObject(DEFAULT_GUI_FONT)); GetObject(g_hfNormal, sizeof(LOGFONT), &lf); lf.lfWeight = FW_BOLD; - g_fBold = CreateFontIndirect(&lf); + g_hfBold = CreateFontIndirect(&lf); /* Get DPI. */ -- cgit v1.2.3