* TextConverters/RTF/RTFProducer.m (-_addAttributesString:):

Correctly handle NSUnderlineStyleNone. This fixes bug #37043.
        * Headers/AppKit/NSOpenGL.h,
        * Source/NSOpenGLContext.m: New 10.6 methods to get/set the
        * CGLContextObj.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@35358 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2012-08-07 20:50:45 +00:00
parent b4be94c241
commit 4ac3354555
4 changed files with 34 additions and 6 deletions

View file

@ -69,6 +69,12 @@
return [[self _classContext] currentContext];
}
- (void *)CGLContextObj
{
[self subclassResponsibility: _cmd];
return NULL;
}
- (void)clearDrawable
{
[self subclassResponsibility: _cmd];
@ -107,16 +113,19 @@
[self subclassResponsibility: _cmd];
}
- (id)initWithCGLContextObj:(void *)context
{
[self subclassResponsibility: _cmd];
return nil;
}
- (id)initWithFormat:(NSOpenGLPixelFormat *)format
shareContext:(NSOpenGLContext *)share
{
[self subclassResponsibility: _cmd];
return 0;
return nil;
}
- (void)makeCurrentContext
{
[self subclassResponsibility: _cmd];