diff --git a/WINGs/WINGs/WINGs.h b/WINGs/WINGs/WINGs.h index b6192bdb..1f072ba9 100644 --- a/WINGs/WINGs/WINGs.h +++ b/WINGs/WINGs/WINGs.h @@ -781,8 +781,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);