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);