installer: Fixed Options CheckListBox NotifyChecked()
authorJerome St-Louis <jerome@ecere.com>
Thu, 8 Aug 2013 23:47:29 +0000 (19:47 -0400)
committerJerome St-Louis <jerome@ecere.com>
Thu, 8 Aug 2013 23:47:29 +0000 (19:47 -0400)
installer/src/installer.ec

index c78c5dc..ca266bb 100644 (file)
@@ -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