From: Jerome St-Louis Date: Thu, 8 Aug 2013 23:47:29 +0000 (-0400) Subject: installer: Fixed Options CheckListBox NotifyChecked() X-Git-Tag: 0.44.08~31 X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?p=sdk;a=commitdiff_plain;h=ba22f2c27fef583472367b0781c96fc45f685e57 installer: Fixed Options CheckListBox NotifyChecked() --- diff --git a/installer/src/installer.ec b/installer/src/installer.ec index c78c5dc..ca266bb 100644 --- a/installer/src/installer.ec +++ b/installer/src/installer.ec @@ -555,13 +555,11 @@ class Installer : Window rowHeight = 18; opacity = 0; - bool NotifyChanged(CheckListBox listBox, DataRow row) + void NotifyChecked(CheckListBox listBox, DataRow row) { CheckItem * item = row.GetData(optionField); InstallOption * option = item->data; - int c; option->selected = listBox.IsChecked(row); - return true; } }; Button install