mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 22:10:47 +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
c6ff462516
commit
da416a062d
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>
|
2008-05-03 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Source/NSTableView.m (-selectRow:byExtendingSelection:,
|
* Source/NSTableView.m (-selectRow:byExtendingSelection:,
|
||||||
|
|
|
@ -920,6 +920,15 @@ static NSNotificationCenter *nc;
|
||||||
_ignoresMultiClick = flag;
|
_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
|
* NSCoding protocol
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue