Fixed typo in [NSCursor resizeNESWCursor] method name.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@37013 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Frank Le Grand 2013-08-23 16:31:38 +00:00
parent 94976243dd
commit c1baac77be
2 changed files with 2 additions and 2 deletions

View file

@ -120,7 +120,7 @@ backgroundColorHint:(NSColor *)bg
+ (NSCursor*) resizeUpCursor;
+ (NSCursor*) resizeUpDownCursor;
+ (NSCursor*) resizeNWSECursor;
+ (NSCursor*) resizeSESWCursor;
+ (NSCursor*) resizeNESWCursor;
#endif
#if OS_API_VERSION(MAC_OS_X_VERSION_10_6, GS_API_LATEST)

View file

@ -282,7 +282,7 @@ NSCursor *getStandardCursor(NSString *name, int style)
return getStandardCursor(@"GSResizeNWSECursor", GSResizeNWSECursor);
}
+ (NSCursor*) resizeSESWCursor
+ (NSCursor*) resizeNESWCursor
{
return getStandardCursor(@"GSResizeNESWCursor", GSResizeNESWCursor);
}