From 508b45d371c57f858d0f0df168ee449ed2003dc2 Mon Sep 17 00:00:00 2001 From: Marcian Lytwyn Date: Tue, 4 Sep 2012 16:48:08 +0000 Subject: [PATCH] Expose title binding git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@35522 72102866-910b-0410-8b05-ffd578937521 --- Source/NSCell.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/NSCell.m b/Source/NSCell.m index a7c1876ea..d3bcaab6a 100644 --- a/Source/NSCell.m +++ b/Source/NSCell.m @@ -63,6 +63,7 @@ #import "AppKit/NSTextContainer.h" #import "AppKit/NSView.h" #import "AppKit/NSWindow.h" +#import "AppKit/NSKeyValueBinding.h" #import "GNUstepGUI/GSTheme.h" #import "GSGuiPrivate.h" @@ -116,6 +117,9 @@ static NSColor *dtxtCol; name: NSSystemColorsDidChangeNotification object: nil]; [self _systemColorsChanged: nil]; +#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST) + [self exposeBinding: NSTitleBinding]; +#endif } }