Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

Location:
branches/PersistenceReintegration/HeuristicLab.Analysis.Views/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Analysis.Views/3.3/ScatterPlotControl.cs

    r14860 r14927  
    443443    #region Chart Event Handlers
    444444    private void chart_MouseDoubleClick(object sender, MouseEventArgs e) {
    445       HitTestResult result = chart.HitTest(e.X, e.Y,ChartElementType.DataPoint);
     445      HitTestResult result = chart.HitTest(e.X, e.Y, ChartElementType.DataPoint);
    446446      if (result.ChartElementType != ChartElementType.DataPoint) return;
    447447
  • branches/PersistenceReintegration/HeuristicLab.Analysis.Views/3.3/ScatterPlotVisualPropertiesControl.cs

    r14185 r14927  
    100100          yAxisGridCheckBox.Checked = Content.YAxisGrid;
    101101        }
    102       }
    103       finally { SuppressEvents = false; }
     102      } finally { SuppressEvents = false; }
    104103      SetEnabledStateOfControls();
    105104    }
     
    209208          Content.XAxisMinimumAuto = xAxisMinimumAutoRadioButton.Checked;
    210209          if (Content.XAxisMinimumAuto) xAxisMinimumFixedTextBox.Text = double.NaN.ToString();
    211         }
    212         finally { SuppressEvents = false; }
     210        } finally { SuppressEvents = false; }
    213211        SetEnabledStateOfControls();
    214212      }
     
    221219          Content.XAxisMaximumAuto = xAxisMaximumAutoRadioButton.Checked;
    222220          if (Content.XAxisMaximumAuto) xAxisMaximumFixedTextBox.Text = double.NaN.ToString();
    223         }
    224         finally { SuppressEvents = false; }
     221        } finally { SuppressEvents = false; }
    225222        SetEnabledStateOfControls();
    226223      }
     
    233230          Content.YAxisMinimumAuto = yAxisMinimumAutoRadioButton.Checked;
    234231          if (Content.YAxisMinimumAuto) yAxisMinimumFixedTextBox.Text = double.NaN.ToString();
    235         }
    236         finally { SuppressEvents = false; }
     232        } finally { SuppressEvents = false; }
    237233        SetEnabledStateOfControls();
    238234      }
     
    245241          Content.YAxisMaximumAuto = yAxisMaximumAutoRadioButton.Checked;
    246242          if (Content.YAxisMaximumAuto) yAxisMaximumFixedTextBox.Text = double.NaN.ToString();
    247         }
    248         finally { SuppressEvents = false; }
     243        } finally { SuppressEvents = false; }
    249244        SetEnabledStateOfControls();
    250245      }
  • branches/PersistenceReintegration/HeuristicLab.Analysis.Views/3.3/ScatterPlotVisualPropertiesDialog.cs

    r14185 r14927  
    131131          seriesListView.SelectedIndices.Clear();
    132132          seriesListView.EndUpdate();
    133         }
    134         finally { SuppressEvents = false; }
     133        } finally { SuppressEvents = false; }
    135134        seriesListView.SelectedIndices.Add(index - 1);
    136135        UpdateAllSeriesPositions();
     
    152151          seriesListView.SelectedIndices.Clear();
    153152          seriesListView.EndUpdate();
    154         }
    155         finally { SuppressEvents = false; }
     153        } finally { SuppressEvents = false; }
    156154        seriesListView.SelectedIndices.Add(index + 1);
    157155        UpdateAllSeriesPositions();
Note: See TracChangeset for help on using the changeset viewer.