mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Add old NeXT method, no longer present, but needed for
backward compatibility. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26487 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0cb8c36a82
commit
1988c2cef0
2 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-05-03 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSControl.m (-mouseDownFlags): Add old NeXT method, no
|
||||
longer present, but needed for backward compatibility.
|
||||
|
||||
2008-05-03 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSTableView.m (-selectRow:byExtendingSelection:,
|
||||
|
|
|
@ -920,6 +920,15 @@ static NSNotificationCenter *nc;
|
|||
_ignoresMultiClick = flag;
|
||||
}
|
||||
|
||||
/**<p>Returns the mouse flags. This flags are usally sets in
|
||||
the NSCell-trackMouse:inRect:ofView:untilMouseUp: method.</p>
|
||||
<p>This is a NeXTStep 3.3 method, no longer officially supported.</p>
|
||||
*/
|
||||
- (int) mouseDownFlags
|
||||
{
|
||||
return [[self selectedCell] mouseDownFlags];
|
||||
}
|
||||
|
||||
/*
|
||||
* NSCoding protocol
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue