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)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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      }
Note: See TracChangeset for help on using the changeset viewer.