Removed implementation of image sliding. Corrected

xgps_cursor_image compiler warning.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@15947 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2003-02-12 00:11:22 +00:00
parent 2884c04818
commit ba33a3a06a

View file

@ -2539,7 +2539,7 @@ xgps_cursor_image(Display *xdpy, Drawable draw, const unsigned char *data,
{
if ((unsigned short)((char)*data++) > 128)
{
*cData |= (0x01 << i);
*cData |= (0x01 << j);
}
cData++;
}
@ -2793,13 +2793,3 @@ _computeDepth(int class, int bpp)
@end
#include "x11/XGSlideView.h"
@implementation XGServer (Sliding)
- (BOOL) slideImage: (NSImage*)image from: (NSPoint)from to: (NSPoint)to
{
return [XGSlideView _slideImage: image from: from to: to];
}
@end