* Source/NSKeyValueBinding.m ([GSKeyValueBinding-transformValue:withOptions:]):

Don't use @"" when no null placeholder is defined.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34135 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2011-11-07 20:46:55 +00:00
parent 58a8cc6c6e
commit 85a2796f5e
2 changed files with 6 additions and 4 deletions

View file

@ -414,10 +414,6 @@ void GSBindingInvokeAction(NSString *targetKey, NSString *argumentKey,
{
placeholder = [options objectForKey:
NSNullPlaceholderBindingOption];
if (placeholder == nil)
{
placeholder = @"";
}
return placeholder;
}