mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 20:50:44 +00:00
Pass nil argument to selector called by NSTextView -doCommandBySelector:
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@37633 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
72f44c1ded
commit
1549ee2fa9
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-01-24 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* Source/NSTextView.m (-doCommandBySelector:): Pass nil argument
|
||||
to selector.
|
||||
|
||||
2014-01-19 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSDocument.m: Add some NSError return values.
|
||||
|
|
|
@ -2164,7 +2164,7 @@ chain if we can't handle it. */
|
|||
}
|
||||
if ([self respondsToSelector: aSelector])
|
||||
{
|
||||
[self performSelector: aSelector];
|
||||
[self performSelector: aSelector withObject: nil];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue