Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/26/08 13:19:05 (16 years ago)
Author:
gkronber
Message:

fixed serialization and display of floating point number in plugin HeuristicLab.Data (ticket #175). Had to make the dataGridView in ArrayDataBaseView and MatrixDataBaseView to protected to be able to change the format of cells in DoubleArrayDataView and DoubleMatrixDataView.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Ticket175Branch/HeuristicLab.Data/ArrayDataBaseView.cs

    r2 r343  
    6464        dataGridView.RowCount = length;
    6565        for (int i = 0; i < length; i++) {
    66           dataGridView.Rows[i].Cells[0].Value = ArrayDataBase.Data.GetValue(i); ;
     66          dataGridView.Rows[i].Cells[0].Value = ArrayDataBase.Data.GetValue(i);
    6767        }
    6868      } else {
Note: See TracChangeset for help on using the changeset viewer.