mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
Added semi-colons to global vars and removed accidental gloabl variable.
This commit is contained in:
+11
-11
@@ -67,29 +67,29 @@ var CPTableViewDelegate_selectionShouldChangeInTableView_
|
||||
CPTableViewDelegate_tableViewSelectionIsChanging_ = 1 << 19;
|
||||
|
||||
//CPTableViewDraggingDestinationFeedbackStyles
|
||||
CPTableViewDraggingDestinationFeedbackStyleNone = -1,
|
||||
CPTableViewDraggingDestinationFeedbackStyleRegular = 0,
|
||||
CPTableViewDraggingDestinationFeedbackStyleNone = -1;
|
||||
CPTableViewDraggingDestinationFeedbackStyleRegular = 0;
|
||||
CPTableViewDraggingDestinationFeedbackStyleSourceList = 1;
|
||||
|
||||
//CPTableViewDropOperations
|
||||
CPTableViewDropOn = 0,
|
||||
CPTableViewDropOn = 0;
|
||||
CPTableViewDropAbove = 1;
|
||||
|
||||
// TODO: add docs
|
||||
|
||||
CPTableViewSelectionHighlightStyleNone = -1,
|
||||
CPTableViewSelectionHighlightStyleRegular = 0,
|
||||
CPTableViewSelectionHighlightStyleNone = -1;
|
||||
CPTableViewSelectionHighlightStyleRegular = 0;
|
||||
CPTableViewSelectionHighlightStyleSourceList = 1;
|
||||
|
||||
CPTableViewGridNone = 0;
|
||||
CPTableViewSolidVerticalGridLineMask = 1 << 0;
|
||||
CPTableViewSolidHorizontalGridLineMask = 1 << 1;
|
||||
|
||||
CPTableViewNoColumnAutoresizing = 0,
|
||||
CPTableViewUniformColumnAutoresizingStyle = 1,
|
||||
CPTableViewSequentialColumnAutoresizingStyle = 2,
|
||||
CPTableViewReverseSequentialColumnAutoresizingStyle = 3,
|
||||
CPTableViewLastColumnOnlyAutoresizingStyle = 4,
|
||||
CPTableViewNoColumnAutoresizing = 0;
|
||||
CPTableViewUniformColumnAutoresizingStyle = 1;
|
||||
CPTableViewSequentialColumnAutoresizingStyle = 2;
|
||||
CPTableViewReverseSequentialColumnAutoresizingStyle = 3;
|
||||
CPTableViewLastColumnOnlyAutoresizingStyle = 4;
|
||||
CPTableViewFirstColumnOnlyAutoresizingStyle = 5;
|
||||
|
||||
|
||||
@@ -1996,7 +1996,7 @@ CPTableViewFirstColumnOnlyAutoresizingStyle = 5;
|
||||
|
||||
// Now clear all the leftovers
|
||||
// FIXME: this could be faster!
|
||||
for (identifier in _cachedDataViews)
|
||||
for (var identifier in _cachedDataViews)
|
||||
{
|
||||
var dataViews = _cachedDataViews[identifier],
|
||||
count = dataViews.length;
|
||||
|
||||
Reference in New Issue
Block a user