From 72a5f48b87536f3fd92664f13fecdac7c84bacc7 Mon Sep 17 00:00:00 2001 From: rmottola Date: Wed, 28 Oct 2015 01:49:12 +0000 Subject: [PATCH] fix spelling to american English git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@39101 72102866-910b-0410-8b05-ffd578937521 --- Headers/AppKit/NSWindow.h | 4 ++-- Source/NSWindow.m | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Headers/AppKit/NSWindow.h b/Headers/AppKit/NSWindow.h index 54481cba6..90d1c70bb 100644 --- a/Headers/AppKit/NSWindow.h +++ b/Headers/AppKit/NSWindow.h @@ -570,8 +570,8 @@ PACKAGE_SCOPE - (NSResponder*) firstResponder; #if OS_API_VERSION(MAC_OS_X_VERSION_10_5, GS_API_LATEST) -- (NSWindowCollectionBehavior)collectionBehaviour; -- (void)setCollectionBehaviour:(NSWindowCollectionBehavior)props; +- (NSWindowCollectionBehavior)collectionBehavior; +- (void)setCollectionBehavior:(NSWindowCollectionBehavior)props; #endif /** diff --git a/Source/NSWindow.m b/Source/NSWindow.m index 56a471928..638382c74 100644 --- a/Source/NSWindow.m +++ b/Source/NSWindow.m @@ -2657,13 +2657,13 @@ titleWithRepresentedFilename(NSString *representedFilename) _f.dynamic_depth_limit = flag; } -- (NSWindowCollectionBehavior)collectionBehaviour +- (NSWindowCollectionBehavior)collectionBehavior { //TODO: we don't handle collections yet and perhaps never will fully return 0; } -- (void)setCollectionBehaviour:(NSWindowCollectionBehavior)props +- (void)setCollectionBehavior:(NSWindowCollectionBehavior)props { //TODO we don't handle collections yet. Perhaps certain features can be mapped on existing ones //other features are Expose specific or anyway probably not implementable