extras/gui/CheckListBox: Fixed missing NotifyChecked() callback on parent row
authorJerome St-Louis <jerome@ecere.com>
Tue, 27 Aug 2013 00:18:10 +0000 (20:18 -0400)
committerJerome St-Louis <jerome@ecere.com>
Tue, 27 Aug 2013 00:18:10 +0000 (20:18 -0400)
extras/gui/controls/CheckListBox.ec

index 84474d5..670b449 100644 (file)
@@ -249,7 +249,7 @@ class CheckListBox : ListBox
             // Take out all children from rowChecks, checking them all
             UnsetChildren(rr);
 
-            NotifyChecked(master, this, row);
+            NotifyChecked(master, this, rr);
 
             for(parent = rr.parent; parent; parent = parent.parent)
             {