Updated Branches: refs/heads/develop 81dff9712 -> c85073c1e
These uints were initialised with a value of -1. Falcon agreed that was silly. For their mistake they now have to suffer under the load of int.MAX_VALUE ;-) Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/c85073c1 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/c85073c1 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/c85073c1 Branch: refs/heads/develop Commit: c85073c1e0ae42e076b689a9ff5a9d4dc3ab4f7f Parents: 81dff97 Author: Erik de Bruin <[email protected]> Authored: Fri Sep 13 14:17:38 2013 +0200 Committer: Erik de Bruin <[email protected]> Committed: Fri Sep 13 14:17:38 2013 +0200 ---------------------------------------------------------------------- .../projects/spark/src/spark/events/GridItemEditorEvent.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/c85073c1/frameworks/projects/spark/src/spark/events/GridItemEditorEvent.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/spark/src/spark/events/GridItemEditorEvent.as b/frameworks/projects/spark/src/spark/events/GridItemEditorEvent.as index ff832e6..4d48c0f 100644 --- a/frameworks/projects/spark/src/spark/events/GridItemEditorEvent.as +++ b/frameworks/projects/spark/src/spark/events/GridItemEditorEvent.as @@ -265,8 +265,8 @@ public class GridItemEditorEvent extends Event public function GridItemEditorEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, - rowIndex:uint = -1, - columnIndex:uint = -1, + rowIndex:uint = int.MAX_VALUE, + columnIndex:uint = int.MAX_VALUE, column:GridColumn = null) { super(type, bubbles, cancelable);
