Index: Application/Riskeer/src/Application.Riskeer/App.xaml.cs
===================================================================
diff -u -r770d15b5d6fbbb7cd41a61b68a25ebbd69a11526 -r3cc7b5657809a8caee7ca5224d0657c7625dc7f3
--- Application/Riskeer/src/Application.Riskeer/App.xaml.cs (.../App.xaml.cs) (revision 770d15b5d6fbbb7cd41a61b68a25ebbd69a11526)
+++ Application/Riskeer/src/Application.Riskeer/App.xaml.cs (.../App.xaml.cs) (revision 3cc7b5657809a8caee7ca5224d0657c7625dc7f3)
@@ -239,7 +239,7 @@
}
///
- /// Delete the old log files.
+ /// Deletes the old log files.
///
private static void DeleteOldLogFiles()
{
Index: Core/Gui/src/Core.Gui/Commands/RoutedCommandHandler.cs
===================================================================
diff -u -r5656a1c68b792647f0222b72b2a80d92c96adb89 -r3cc7b5657809a8caee7ca5224d0657c7625dc7f3
--- Core/Gui/src/Core.Gui/Commands/RoutedCommandHandler.cs (.../RoutedCommandHandler.cs) (revision 5656a1c68b792647f0222b72b2a80d92c96adb89)
+++ Core/Gui/src/Core.Gui/Commands/RoutedCommandHandler.cs (.../RoutedCommandHandler.cs) (revision 3cc7b5657809a8caee7ca5224d0657c7625dc7f3)
@@ -39,7 +39,7 @@
new PropertyMetadata(default(ICommand)));
///
- /// Gets or sets the command that should be executed when the RoutedCommand fires.
+ /// Gets or sets the command that should be executed when the fires.
///
public ICommand Command
{
@@ -57,36 +57,18 @@
return new RoutedCommandHandler();
}
- ///
- /// Registers this handler to respond to the registered for the
- /// given element.
- ///
- /// The element for which we should register the command
- /// binding for the current routed command.
internal void Register(FrameworkElement owner)
{
var binding = new CommandBinding(RoutedCommand, HandleExecute, HandleCanExecute);
owner.CommandBindings.Add(binding);
}
- ///
- /// Executes with the
- /// from .
- ///
- /// The owner of the .
- /// The event arguments given by the routed event.
private void HandleCanExecute(object sender, CanExecuteRoutedEventArgs e)
{
e.CanExecute = Command?.CanExecute(e.Parameter) == true;
e.Handled = true;
}
- ///
- /// Executes with the
- /// from .
- ///
- /// The owner of the routed command.
- /// The event arguments given by the routed event.
private void HandleExecute(object sender, ExecutedRoutedEventArgs e)
{
Command?.Execute(e.Parameter);
Index: Core/Gui/src/Core.Gui/Forms/Chart/ChartLegendView.Designer.cs
===================================================================
diff -u -r78b4d18ebe304a6899eb3d71feb52b82d5ff3136 -r3cc7b5657809a8caee7ca5224d0657c7625dc7f3
--- Core/Gui/src/Core.Gui/Forms/Chart/ChartLegendView.Designer.cs (.../ChartLegendView.Designer.cs) (revision 78b4d18ebe304a6899eb3d71feb52b82d5ff3136)
+++ Core/Gui/src/Core.Gui/Forms/Chart/ChartLegendView.Designer.cs (.../ChartLegendView.Designer.cs) (revision 3cc7b5657809a8caee7ca5224d0657c7625dc7f3)
@@ -53,7 +53,7 @@
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChartLegendView));
- this.treeViewControl = new Core.Common.Controls.TreeView.TreeViewControl();
+ this.treeViewControl = new TreeViewControl();
this.SuspendLayout();
//
// treeViewControl
Index: Core/Gui/test/Core.Gui.Test/Forms/Chart/ChartDataCollectionTreeNodeInfoTest.cs
===================================================================
diff -u -r4f3a17e38e2c97e55bd830d0844a3334c30bd014 -r3cc7b5657809a8caee7ca5224d0657c7625dc7f3
--- Core/Gui/test/Core.Gui.Test/Forms/Chart/ChartDataCollectionTreeNodeInfoTest.cs (.../ChartDataCollectionTreeNodeInfoTest.cs) (revision 4f3a17e38e2c97e55bd830d0844a3334c30bd014)
+++ Core/Gui/test/Core.Gui.Test/Forms/Chart/ChartDataCollectionTreeNodeInfoTest.cs (.../ChartDataCollectionTreeNodeInfoTest.cs) (revision 3cc7b5657809a8caee7ca5224d0657c7625dc7f3)
@@ -406,6 +406,7 @@
var chartDataCollection = new ChartDataCollection("test data");
chartDataCollection.Add(chartPointData);
+ // Call
using (ContextMenuStrip contextMenu = info.ContextMenuStrip(chartDataCollection, null, null))
{
// Assert
Index: Core/Gui/test/Core.Gui.TestUtil/Core.Gui.TestUtil.csproj
===================================================================
diff -u -r167f4d831b463d77064da0cdab1d4a6b41054e6e -r3cc7b5657809a8caee7ca5224d0657c7625dc7f3
--- Core/Gui/test/Core.Gui.TestUtil/Core.Gui.TestUtil.csproj (.../Core.Gui.TestUtil.csproj) (revision 167f4d831b463d77064da0cdab1d4a6b41054e6e)
+++ Core/Gui/test/Core.Gui.TestUtil/Core.Gui.TestUtil.csproj (.../Core.Gui.TestUtil.csproj) (revision 3cc7b5657809a8caee7ca5224d0657c7625dc7f3)
@@ -26,9 +26,4 @@
3.6.1
-
-
- Component
-
-
\ No newline at end of file