changed method signatures to fix bug intruduced by RFM during typo fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@23197 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2006-08-01 22:21:36 +00:00
parent 0cbcc4f296
commit 5197cf6328
4 changed files with 15 additions and 8 deletions

View file

@ -1,3 +1,10 @@
2006-08-01 Riccardo Mottola <riccardo@kaffe.org>
* Headers/xlib/XGPrivate.h,
Headers/xlib/GSXftFontInfo.h,
Headers/xlib/XGFontSetFontInfo.h:
changed method signatures to fix bug intruduced by RFM during typo fixes
2006-07-09 Fred Kiefer <FredKiefer@gmx.de>
* Header/x11/XGGeneric.h,

View file

@ -47,10 +47,10 @@
- (void) drawString: (NSString*)string
onDisplay: (Display*) xdpy drawable: (Drawable) draw
with: (GC) xgcntxt at: (XPoint) xp;
- (void) draw: (const char*) s lenght: (int) len
- (void) draw: (const char*) s length: (int) len
onDisplay: (Display*) xdpy drawable: (Drawable) draw
with: (GC) xgcntxt at: (XPoint) xp;
- (float) widthOf: (const char*) s lenght: (int) len;
- (float) widthOf: (const char*) s length: (int) len;
- (void) setActiveFor: (Display*) xdpy gc: (GC) xgcntxt;
@end

View file

@ -65,13 +65,13 @@
- (BOOL) glyphIsEncoded: (NSGlyph)glyph;
- (NSGlyph) glyphWithName: (NSString *)glyphName;
- (void) drawGlyphs: (const NSGlyph *)glyphs
lenght: (int)len
length: (int)len
onDisplay: (Display *)dpy
drawable: (Drawable)win
with: (GC)gc
at: (XPoint)xp;
- (float) widthOfGlyphs: (const NSGlyph *)glyphs
lenght: (int)len;
length: (int)len;
- (void) setActiveFor: (Display *)dpy
gc: (GC)gc;

View file

@ -68,16 +68,16 @@ extern unsigned long XGFontPropULong(Display *dpy, XFontStruct *font_struct,
- (void) drawString: (NSString*)string
onDisplay: (Display*) xdpy drawable: (Drawable) draw
with: (GC) xgcntxt at: (XPoint) xp;
- (void) draw: (const char*) s lenght: (int) len
- (void) draw: (const char*) s length: (int) len
onDisplay: (Display*) xdpy drawable: (Drawable) draw
with: (GC) xgcntxt at: (XPoint) xp;
- (float) widthOf: (const char*) s lenght: (int) len;
- (float) widthOf: (const char*) s length: (int) len;
- (void) setActiveFor: (Display*) xdpy gc: (GC) xgcntxt;
- (void) drawGlyphs: (const NSGlyph *) glyphs lenght: (int) len
- (void) drawGlyphs: (const NSGlyph *) glyphs length: (int) len
onDisplay: (Display*) xdpy drawable: (Drawable) draw
with: (GC) xgcntxt at: (XPoint) xp;
- (float) widthOfGlyphs: (const NSGlyph *) glyphs lenght: (int) len;
- (float) widthOfGlyphs: (const NSGlyph *) glyphs length: (int) len;
@end