diff --git a/ChangeLog b/ChangeLog index 528f6d9..f15da03 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-01-26 21:24 Alexander Malmberg + + * Source/xlib/GSXftFontInfo.m: Update with screen font changes in + backend/gui interface. + 2003-01-26 20:07 Alexander Malmberg * Source/x11/XWindowBuffer.m (-_exposeRect:): Round rectangle to diff --git a/Source/xlib/GSXftFontInfo.m b/Source/xlib/GSXftFontInfo.m index 4e9dfa5..bd6e101 100644 --- a/Source/xlib/GSXftFontInfo.m +++ b/Source/xlib/GSXftFontInfo.m @@ -53,8 +53,16 @@ static NSMutableDictionary *_globalFontDictionary = nil; @implementation GSXftFontInfo -- initWithFontName: (NSString*)name matrix: (const float *)fmatrix +- initWithFontName: (NSString*)name + matrix: (const float *)fmatrix + screenFont: (BOOL)screenFont { + if (screenFont) + { + RELEASE(self); + return nil; + } + [super init]; ASSIGN(fontName, name); memcpy(matrix, fmatrix, sizeof(matrix));