Use GSDrawingFunctions instead of Function.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19483 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2004-06-07 23:54:25 +00:00
parent daa0b750c0
commit f962706ef0
11 changed files with 60 additions and 111 deletions

View file

@ -40,6 +40,7 @@
#include "AppKit/NSTableView.h"
#include "AppKit/NSWindow.h"
#include "AppKit/PSOperators.h"
#include "GNUstepGUI/GSDrawFunctions.h"
@implementation NSScrollView
@ -917,11 +918,11 @@ static float scrollerWidth;
break;
case NSBezelBorder:
NSDrawGrayBezel(_bounds, rect);
[GSDrawFunctions drawGrayBezel: _bounds : rect];
break;
case NSGrooveBorder:
NSDrawGroove(_bounds, rect);
[GSDrawFunctions drawGroove: _bounds : rect];
break;
}