Updated Branches:
  refs/heads/develop 6b8195a46 -> abc21ee4e

Fix a compiler warning "Warning: Assignment within conditional.  Did you mean 
== instead of =?" in advancedgrids project


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/abc21ee4
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/abc21ee4
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/abc21ee4

Branch: refs/heads/develop
Commit: abc21ee4ee673351dd41fc3dd84a082a81f3cea6
Parents: 6b8195a
Author: cyrill.zadra <cyrill.za...@gmail.com>
Authored: Thu Sep 12 12:17:55 2013 +0200
Committer: cyrill.zadra <cyrill.za...@gmail.com>
Committed: Thu Sep 12 12:17:55 2013 +0200

----------------------------------------------------------------------
 .../projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as  | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/abc21ee4/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as
----------------------------------------------------------------------
diff --git 
a/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as 
b/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as
index 38f5bc0..88218d7 100644
--- a/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as
+++ b/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGrid.as
@@ -7781,10 +7781,9 @@ public class AdvancedDataGrid extends 
AdvancedDataGridBaseEx
                        if (rowData)
                        {
                                var rowIndicators:Object = 
cellSelectionIndicators[rowData.uid];
-                               var columnIndicator:Sprite;
-                               if (rowIndicators && (columnIndicator = 
rowIndicators[columnIndex]))
+                               if (rowIndicators && rowIndicators[columnIndex])
                                {
-                                       o = columnIndicator;
+                                       o = rowIndicators[columnIndex];
                                        if (o.parent)
                                                o.parent.removeChild(o);
                                        

Reply via email to