From: Jerome St-Louis Date: Tue, 27 Aug 2013 00:18:10 +0000 (-0400) Subject: extras/gui/CheckListBox: Fixed missing NotifyChecked() callback on parent row X-Git-Tag: 0.44.09~39 X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?p=sdk;a=commitdiff_plain;h=ab3190e905c468b8f0e0811221af5cebb9f0839d extras/gui/CheckListBox: Fixed missing NotifyChecked() callback on parent row --- diff --git a/extras/gui/controls/CheckListBox.ec b/extras/gui/controls/CheckListBox.ec index 84474d5..670b449 100644 --- a/extras/gui/controls/CheckListBox.ec +++ b/extras/gui/controls/CheckListBox.ec @@ -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) {