From fa99c12fd710fa56284284d47d4c459ebe97adee Mon Sep 17 00:00:00 2001 From: Stu Black Date: Fri, 14 Nov 2025 01:09:34 -0500 Subject: [PATCH] Remove unused function WMIsAntialiasingEnabled. --- WINGs/WINGs/WINGs.h | 2 -- WINGs/wfont.c | 5 ----- 2 files changed, 7 deletions(-) diff --git a/WINGs/WINGs/WINGs.h b/WINGs/WINGs/WINGs.h index 2d2b3a8e..769af6dc 100644 --- a/WINGs/WINGs/WINGs.h +++ b/WINGs/WINGs/WINGs.h @@ -778,8 +778,6 @@ void WMSetViewDragDestinationProcs(WMView *view, WMDragDestinationProcs *procs); /* ---[ WINGs/wfont.c ]--------------------------------------------------- */ -Bool WMIsAntialiasingEnabled(WMScreen *scrPtr); - WMFont* WMCreateFont(WMScreen *scrPtr, const char *fontName); WMFont* WMCopyFontWithStyle(WMScreen *scrPtr, WMFont *font, WMFontStyle style); diff --git a/WINGs/wfont.c b/WINGs/wfont.c index 52af4bfc..fb0d11c8 100644 --- a/WINGs/wfont.c +++ b/WINGs/wfont.c @@ -224,11 +224,6 @@ void WMReleaseFont(WMFont * font) } } -Bool WMIsAntialiasingEnabled(WMScreen * scrPtr) -{ - return scrPtr->antialiasedText; -} - unsigned int WMFontHeight(WMFont * font) { wassertrv(font != NULL, 0);