Skip to content
This repository has been archived by the owner on Nov 12, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of git://github.com/280north/cappuccino
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen committed Mar 11, 2009
2 parents c368731 + 38d72bc commit cc8f8fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AppKit/CPCollectionView.j
Expand Up @@ -258,7 +258,7 @@
*/
- (void)setSelectionIndexes:(CPIndexSet)anIndexSet
{
if (_selectionIndexes == anIndexSet)
if (_selectionIndexes == anIndexSet || !_isSelectable)
return;

var index = CPNotFound;
Expand Down
6 changes: 4 additions & 2 deletions AppKit/CPControl.j
Expand Up @@ -320,6 +320,7 @@ var CPControlBlackColor = [CPColor blackColor];
Sets the tooltip for the receiver.
@param aToolTip the tooltip
*/
/*
-(void)setToolTip:(CPString)aToolTip
{
if (_toolTip == aToolTip)
Expand All @@ -331,15 +332,16 @@ var CPControlBlackColor = [CPColor blackColor];
_DOMElement.title = aToolTip;
#endif
}

*/
/*!
Returns the receiver's tooltip
*/
/*
-(CPString)toolTip
{
return _toolTip;
}

*/
/*!
Returns the receiver's target action
*/
Expand Down

0 comments on commit cc8f8fe

Please sign in to comment.